.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.page {
    padding: 1rem;
}

h1 {
    font-size: 3rem !important;
    font-weight: 700;
}

h2 {
    font-size: 2rem !important;
}

h3 {
    font-size: 1.75rem !important;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}

#page-1 {
    background: url('../images/branding-and-design/bg-pic.jpg') no-repeat center fixed;
    filter: grayscale(100%);
    background-size: cover;
}

#page-1 .wrapper {
    text-align: center;
    color: var(--second-color);
    padding: min(500px, 17.5%) min(300px, 10%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

#page-1 p {
    margin-top: 0.75rem;
}

@media (max-width: 768px) {
    #page-1 h1 {
        font-size: 2rem !important;
    }

    #page-1 h2 {
        margin-top: 0.75rem;
        font-size: 1.5rem !important;
    }

    #page-1 p {
        margin-top: 0.75rem;
        font-size: 1rem !important;
    }
}

#page-2 {
    background-color: var(--second-color);
    color: var(--first-color);
    padding: 4rem 0;
    transition: background-color 0.4s ease, color 0.4s ease;
}

#page-2 .logo-cards h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

#page-2 .logo-cards .intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
    color: var(--greeting);
    text-align: center;
    line-height: 1.6;
}

#page-2 .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#page-2 .card {
    background-color: transparent;
    color: var(--greeting);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    border: 1px solid var(--first-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#page-2 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

#page-2 .card-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--first-color);
    color: var(--second-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

#page-2 .card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--first-color);
}

#page-2 .card p {
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    #page-2 {
        padding: 2rem 0;
    }

    #page-2 .logo-cards h2 {
        font-size: 1.8rem;
    }

    #page-2 .card-grid {
        gap: 1rem;
    }

    #page-2 .card {
        padding: 1.5rem 1rem;
    }

    #page-2 .card-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }

    #page-2 .card h3 {
        font-size: 1.25rem;
    }

    #page-2 .card p {
        font-size: 0.95rem;
    }
}

#page-3 {
    background-color: var(--first-color);
    color: var(--second-color);
    padding: 4rem 0;
    transition: background-color 0.4s ease, color 0.4s ease;
}

#page-3 .brand-guide {
    text-align: center;
}

#page-3 .brand-guide h2 {

}

#page-3 ul {
    text-align: left;
    list-style: none;
    max-width: 600px;
    margin: 2rem auto;
    padding: 0;
    position: relative;
}

#page-3 .intro {
    margin-top: 1.5rem;
}

#page-3 hr {
    margin: 2.5rem auto;
    width: 75%;
    background: var(--third-color);
}

#page-3 ul li {
    padding: 15px 20px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--third-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1em;
    color: #333;
}

#page-3 ul li:hover {
    transform: translateX(20px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#page-3 ul li::before {
    content: '✦';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--second-color);
    font-size: 1.2em;
    opacity: 0;
    transition: all 0.3s ease;
}

#page-3 ul li:hover::before {
    opacity: 1;
    left: -25px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#page-3 ul li {
    animation: slideIn 0.6s ease forwards;
}

#page-3 ul li:nth-child(1) {
    animation-delay: 0.1s;
}

#page-3 ul li:nth-child(2) {
    animation-delay: 0.2s;
}

#page-3 ul li:nth-child(3) {
    animation-delay: 0.3s;
}

#page-3 ul li:nth-child(4) {
    animation-delay: 0.4s;
}

#page-3 .benefit-title {
    display: block;
    font-weight: 600;
    color: var(--second-color);
    margin-bottom: 8px;
    font-size: 1.2em;
}

#page-3 .benefit-description {
    display: block;
    font-weight: 300;
    line-height: 1.6;
    color: var(--third-color);
    font-size: 0.95em;
}

#page-3 ul li {
    padding: 20px 25px;
    margin: 15px 0;
}