* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #319795;
    --primary-teal-light: #4FD1C5;
    --primary-teal-dark: #285E61;
    --text-dark: #2D3748;
    --text-light: #4A5568;
    --bg-white: #FFFFFF;
    --bg-light-blue: #F0F4F8;
    --bg-teal-light: #E6FFFA;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.navbar {
    background-color: var(--bg-white);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-teal);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-teal);
}

.hero {
    min-height: 100vh;
    background-color: var(--bg-light-blue);
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 52px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 16px 44px;
    background-color: var(--primary-teal);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-teal);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-teal);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.content-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.alt-bg {
    background-color: var(--bg-light-blue);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 28px;
    position: relative;
}

.section-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-teal);
}

.section-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.section-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.legal-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 60px;
    background-color: var(--bg-white);
}

.back-btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--primary-teal);
    color: var(--bg-white);
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.back-btn:hover {
    background-color: var(--primary-teal-dark);
}

#legal-text h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

#legal-text h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

#legal-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

#legal-text ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

#legal-text li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 20px;
    font-size: 14px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--primary-teal-light);
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .hero-container {
        gap: 50px;
    }

    .section-container {
        gap: 50px;
    }

    .section-image img {
        height: 380px;
    }

    .hero-image img {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-container {
        flex-direction: column-reverse;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-image img {
        height: 300px;
    }

    .section-container {
        flex-direction: column;
        gap: 40px;
    }

    .reverse {
        flex-direction: column;
    }

    .section-text h2 {
        font-size: 30px;
    }

    .section-image img {
        height: 280px;
    }

    .nav-links {
        display: none;
    }

    .legal-container {
        margin: 100px auto 40px;
        padding: 30px;
    }
}
