body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #5778a5;
    color: #222;
}

header {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.navbar ul {
    list-style-type: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    display: inline-block;
    color: white;
    text-decoration: none;
    background: #2a3b53;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.navbar a:hover {
    background: #39566a;
    transform: translateY(-2px);
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.intro {
    text-align: center;
    margin-bottom: 30px;
}

.pack-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card {
    background: white;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 180px;
}

.card-blue {
    background: #bfdbfe;
}

.card-green {
    background: #bbf7d0;
}

.card-purple {
    background: #e9d5ff;
}

.card-orange {
    background: #fed7aa;
}

.card-pink {
    background: #fbcfe8;
}

.card-gray {
    background: #d1d5db;
}

.card-yellow {
    background: #fde68a;
}

.card-teal {
    background: #99f6e4;
}

.card-red {
    background: #fecaca;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
    background: #4086db;
    transform: translateY(-2px);
}

/* Do not alter the website from this point forward. Breaching was reported successful. For further action, please refer to the J.R.R marked code. */

footer {
    text-align: center;
    color: white;
    padding: 20px;
    background: #1f2937;
    margin-top: 20px;
}