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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #faf9f6;
    font-size: 16px;
    letter-spacing: 0.3px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    color: #0d0d0d;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.25rem;
    font-weight: 400;
}

p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(13, 13, 13, 0.08);
    transition: all 0.5s ease;
}

.nav {
    padding: 2rem 0;
}

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

.logo {
    font-size: 2rem;
    font-weight: 300;
    color: #0d0d0d;
    text-decoration: none;
    letter-spacing: -0.03em;
    font-family: 'Georgia', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #0d0d0d;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2e5984;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #2e5984;
    transition: width 0.6s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(46, 89, 132, 0.05);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #0d0d0d;
    margin: 3px 0;
    transition: all 0.4s ease;
    border-radius: 1px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    width: 100%;
}

.hero-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.hero-content-zone {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 4rem;
    color: #1a1a1a;
}

.hero-text {
    color: inherit;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666666;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 500px;
    color: #333333;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.cta-button.primary {
    background-color: #2e5984;
    border: 2px solid #2e5984;
    color: #faf9f6;
    transition: all 0.5s ease;
    box-shadow: 0 8px 25px rgba(46, 89, 132, 0.3);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: #2e5984;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(46, 89, 132, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid rgba(250, 249, 246, 0.9);
    color: #faf9f6;
    transition: all 0.5s ease;
}

.cta-button.secondary:hover {
    background-color: #faf9f6;
    color: #0d0d0d;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image-zone {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #2e5984;
    color: #faf9f6;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    border: 1px solid #2e5984;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
}

.cta-button:hover {
    background-color: transparent;
    color: #2e5984;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(46, 89, 132, 0.15);
}

    .philosophy {
        background-color: #faf9f6;
        padding: 6rem 0;
    }

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.philosophy-item {
    padding: 3rem 2rem;
    background: transparent;
    border-left: 2px solid #2e5984;
    padding-left: 3rem;
    transition: all 0.5s ease;
}

.philosophy-item:hover {
    transform: translateX(10px);
    background: rgba(46, 89, 132, 0.02);
}

.philosophy-item h3 {
    margin-bottom: 1.5rem;
    color: #0d0d0d;
    font-size: 1.5rem;
    font-weight: 400;
}

.atmosphere {
    padding: 8rem 0;
    background: #faf9f6;
}

.atmosphere-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.atmosphere-text h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.atmosphere-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.atmosphere-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.6s ease;
}

.atmosphere-gallery img:hover {
    transform: scale(1.03);
}

.page-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    color: #faf9f6;
    text-align: center;
    padding: 12rem 0 10rem;
    margin-top: 80px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.9);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: #faf9f6;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(250, 249, 246, 0.9);
    margin: 0;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.values-section {
    margin-top: 5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.mission-section {
    margin-top: 5rem;
    background-color: #f8f9fa;
    padding: 4rem 0;
    border-radius: 12px;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mission-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.programs-content {
    padding: 5rem 0;
}

.programs-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.program-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    border-color: #6b8e23;
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.1);
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #6b8e23;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.program-header {
    padding: 2rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.program-price {
    text-align: right;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #6b8e23;
}

.period {
    font-size: 0.875rem;
    color: #6c757d;
}

.program-content {
    padding: 1.5rem 2rem 2rem;
}

.program-features {
    list-style: none;
    margin-top: 1.5rem;
}

.program-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.program-features li::before {
    content: "✓";
    color: #6b8e23;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-section {
    margin-top: 5rem;
}

.pricing-table {
    margin: 3rem 0;
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-item {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b8e23;
    margin: 1rem 0;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.additional-services {
    margin-top: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    padding: 2rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b8e23;
    margin-top: 0.5rem;
}

.cta-section {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem 0;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background-color: transparent;
    color: #6b8e23;
    border: 2px solid #6b8e23;
}

.cta-button.secondary:hover {
    background-color: #6b8e23;
    color: white;
}

.contact-content {
    padding: 5rem 0;
}

.contact-link {
    color: #2e5984;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #1a4a6b;
    text-decoration: underline;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: #6b8e23;
    margin-bottom: 1rem;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b8e23;
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    margin-top: 1rem;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    width: auto;
}

.submit-button {
    width: 100%;
    padding: 1.25rem;
    background-color: #6b8e23;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #5a7a1f;
    transform: translateY(-1px);
}

.form-success {
    text-align: center;
    padding: 2rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
}

.additional-info {
    margin-top: 5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    padding: 2rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

    .footer {
        background-color: #0d0d0d;
        color: #faf9f6;
        padding: 4rem 0 3rem;
        margin-top: 4rem;
    }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    color: #2e5984;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(250, 249, 246, 0.8);
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: #2e5984;
    padding-left: 5px;
}

.footer-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #2e5984;
    color: #faf9f6;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.5s ease;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-cta:hover {
    background-color: transparent;
    color: #2e5984;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 89, 132, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 249, 246, 0.1);
    padding-top: 3rem;
    text-align: center;
    color: rgba(250, 249, 246, 0.6);
    font-weight: 300;
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        background-color: rgba(46, 89, 132, 0.05);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background-color: rgba(46, 89, 132, 0.1);
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        background-color: #0d0d0d;
        transition: all 0.4s ease;
        border-radius: 1px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(250, 249, 246, 0.98);
        border-top: 1px solid rgba(13, 13, 13, 0.08);
        padding: 6rem 1.5rem 3rem;
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 2rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-zone {
        order: 2;
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.7) 100%
        );
    }

    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
        max-width: none;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 3rem;
        max-width: none;
        padding: 0 0.5rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
    }

    .hero-image-zone {
        order: 1;
        min-height: 50vh;
        flex: none;
        width: 100%;
        overflow: hidden;
    }

    .hero-image-container {
        height: 50vh;
        width: 100%;
        overflow: hidden;
    }

    .hero-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .atmosphere-content,
    .about-grid,
    .mission-content,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-gallery {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .pricing-row,
    .services-grid,
    .info-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .page-hero {
        padding: 8rem 0 6rem;
        margin-top: 60px;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    /* Mobile Typography Improvements */
    body {
        font-size: 16px;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Ensure no elements cause horizontal scroll */
    * {
        max-width: 100%;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }

    h3 {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    /* Extra small screen typography */
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 1rem;
    }

    .program-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .program-price {
        text-align: left;
    }
}

.terms-content,
.privacy-content {
    padding: 5rem 0;
}

.terms-wrapper,
.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.terms-text,
.privacy-text {
    line-height: 1.7;
    color: #333;
}

.terms-text h2,
.privacy-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    color: #0d0d0d;
    border-bottom: 2px solid #2e5984;
    padding-bottom: 0.5rem;
}

.terms-text h3,
.privacy-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #2e5984;
}

.terms-text ul,
.privacy-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-text li,
.privacy-text li {
    margin-bottom: 0.5rem;
}

.terms-text li strong,
.privacy-text li strong {
    color: #2e5984;
}

.last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid #2e5984;
    margin-bottom: 2rem;
    font-style: italic;
}

.terms-acceptance,
.privacy-contact {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.terms-acceptance em,
.privacy-contact em {
    color: #666;
    font-style: italic;
}

@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .cta-button {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}
