/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #00729e;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Page Container */
.page-container {
    background-color: #00729e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 48px;
}

/* Main Container */
.container {
    padding: 48px 0;
    width: 100%;
    flex: 1;
}

.main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-color: #00729e;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 96px 0;
}

.logo-container {
    width: 351px;
    height: 50px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 120px;
    line-height: 120px;
    text-align: center;
    color: white;
    margin: 0;
}

.hero-image-container {
    width: 100%;
    height: 672px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Text Section */
.text-section {
    background-color: #00729e;
    display: flex;
    gap: 96px;
    padding: 96px 0;
    position: relative;
}

.text-container {
    display: flex;
    gap: 96px;
    align-items: flex-start;
    width: 100%;
    padding: 48px 0;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 52px;
    color: white;
    flex: 1;
    margin: 0;
}

.section-description {
    flex: 1;
    padding-top: 8px;
}

.section-description p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: white;
    margin: 0;
}

.divider {
    position: absolute;
    bottom: 0;
    left: -96px;
    right: -96px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background-color: #00729e;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 96px 0 24px 0;
    overflow: hidden;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    color: white;
    white-space: pre;
    margin: 0;
}

.contact-button {
    border: 1.5px solid rgba(110, 80, 73, 0.2);
    border-radius: 8px;
    padding: 12px 24px;
    background-color: transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-button:active {
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 96px;
        line-height: 96px;
    }

    .text-container {
        flex-direction: column;
        gap: 48px;
    }

    .section-title {
        font-size: 40px;
        line-height: 44px;
    }

    .section-description p {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 0 24px;
    }

    .hero-section {
        padding: 48px 0;
        gap: 32px;
    }

    .logo-container {
        width: 250px;
        height: 36px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 52px;
    }

    .hero-image-container {
        height: 400px;
    }

    .text-section {
        padding: 48px 0;
    }

    .text-container {
        padding: 24px 0;
        gap: 32px;
    }

    .section-title {
        font-size: 32px;
        line-height: 36px;
    }

    .section-description p {
        font-size: 18px;
        line-height: 24px;
    }

    .footer {
        padding: 48px 0 24px 0;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-text {
        font-size: 20px;
        line-height: 24px;
    }

    .contact-button {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .divider {
        left: -24px;
        right: -24px;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .hero-image-container {
        height: 300px;
        border-radius: 16px;
    }

    .section-title {
        font-size: 28px;
        line-height: 32px;
    }

    .section-description p {
        font-size: 16px;
        line-height: 22px;
    }

    .divider {
        left: -16px;
        right: -16px;
    }
}
