#page-1 {
    background: url('../images/about-us/gif_bg.gif') no-repeat center fixed;
    background-size: cover;
}

#page-1 .container {
    width: 100%;
}

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

#page-1 .about-us h2 {
    font-size: 2.6rem;
}

#page-1 .logo__plus__heading__about {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

#page-1 .logo__plus__heading__about img {
    margin-bottom: 1.2rem;
    height: auto;
    width: 64px;
}

#page-1 .logo__plus__heading__about h2 {
    font-size: 3.2rem !important;
    font-style: italic;
}

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

#page-1 h3 {
    color: var(--third-color);
}

@media (max-width: 768px) {
    #page-1 h2 {
        margin-top: 0.75rem;
        font-size: 1.75rem !important;
    }

    #page-1 .logo__plus__heading__about h2 {
        font-size: 2.5rem !important;
    }

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

#page-2 {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 1) 99%);
    color: var(--first-color);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

#page-2 .container {
    display: flex;
    justify-content: center;
}

#page-2 .world-builder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 8rem 2rem;
}

#page-2 .world-builder__text h2 {
    font-family: var(--headers-font), sans-serif;
    color: var(--second-color);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

#page-2 .world-builder__text p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--second-color);
}

#page-2 .world-builder__text blockquote {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 700;
    color: var(--second-color);
    border-left: 4px solid var(--greeting);
    padding-left: 1rem;
}

#page-2 .world-builder__visual img {
    width: 50%;
    justify-self: center;
    border-radius: 1rem;
    transform: translateY(20px);
    animation: floatUp 6s ease-in-out infinite;
}

/* Subtle floating animation */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(20px);
    }
    50% {
        transform: translateY(0);
    }
}

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

    #page-2 .world-builder {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #page-2 .world-builder__visual {
        order: -1;
        margin-bottom: 3rem;
    }

    #page-2 .world-builder__text h2 {
        font-size: 2rem;
    }

    #page-2 .world-builder__text blockquote {
        font-size: 1.25rem;
    }

    #page-2 .world-builder {
        margin: 4rem 2rem;
    }
}

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

#page-3 .what-we-do h1 {
    text-align: center;
    font-size: 4.2rem;
    margin-bottom: 2rem;
}

#page-3 .brief-services-description {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

#page-3 .item {
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#page-3 .item img {
    width: 100%;
    object-fit: contain;
}

#page-3 .item a {
    display: flex;
    flex-grow: 1;
    margin: .5rem;
}

#page-3 .brief-services-description .item:nth-child(even)::before {
    left: auto;
    right: 0;
}

#page-3 .brief-services-description .item:hover {
    transform: translateY(-5px);
    background: var(--first-color);
}

#page-3 .brief-services-description .item:hover h3 {
    color: var(--second-color);
}

#page-3 .brief-services-description .item:hover i {
    color: var(--second-color);
}


#page-3 .brief-services-description .text h3 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--first-color);
}

#page-3 .text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#page-3 .text i {
    font-size: 1.8rem;
}

#page-3 a {
    text-decoration: none;
    color: inherit;
    outline: none;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    #page-3 .brief-services-description .item {
        padding: 1.5rem;
    }

    #page-3 .what-we-do h1 {
        font-size: 1.8rem;
    }

    #page-3 .brief-services-description .text h3 {
        font-size: 1.25rem;
    }
}

#page-4 {
    background-color: var(--first-color);
    color: var(--second-color);
    padding: 8rem 2rem;
}

#page-4 .why-us-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#page-4 .why-us-hero__content {
    display: flex;
    justify-content: space-between;
    margin: 8rem 2rem;
    gap: 6rem;
}

#page-4 h2 {
    font-size: 4.5rem;
    white-space: nowrap;
}

#page-4 .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
    font-style: italic;
    gap: .5rem;
}

#page-4 .btn {
    justify-self: center;
}

@media (max-width: 1024px) {
    #page-4 .why-us-hero__content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin: 3rem 1rem;
        gap: 0;
    }

    #page-4 h2 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }

    #page-4 .text {
        font-size: 1.5rem;
    }
}