
/* Hero Section */
.hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveGrid 20s linear infinite;
    }

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    color: #F9F6F1;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3rem;
    color: white;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 6px;
}

.hero-subtitle {
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}



/* Last Updated */
.last-updated {
    margin-top:1em;
    text-align: center;
    color: #9B8570;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Navigation Tabs */
.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-button {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid #F0E5D9;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #58595B;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
}

    .tab-button:hover {
        border-color: #C7AD90;
        color: #9B8570;
    }

    .tab-button.active {
        background: linear-gradient(135deg, #C7AD90, #9B8570);
        color: white;
        border-color: transparent;
        box-shadow: 0 5px 20px rgba(199, 173, 144, 0.3);
    }

/* Content Sections */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Card */
.content-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(199, 173, 144, 0.1);
}

.section {
    margin-bottom: 3rem;
}

    .section:last-child {
        margin-bottom: 0;
    }

.section-title {
    font-size: 1.8rem;
    color: #9B8570;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #F0E5D9;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #C7AD90;
    margin: 2rem 0 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.section p {
    color: #58595B;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.9;
}

.section ul, .section ol {
    margin: 1rem 0 1rem 2rem;
}

.section li {
    color: #58595B;
    margin-bottom: 0.8rem;
    font-weight: 300;
    line-height: 1.8;
}

    .section li strong {
        color: #9B8570;
        font-weight: 400;
    }

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #F0E5D9 0%, #E8DDD0 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid #C7AD90;
}

    .highlight-box p {
        margin-bottom: 0.5rem;
    }

        .highlight-box p:last-child {
            margin-bottom: 0;
        }

/* Important Notice */
.important-notice {
    background: white;
    border: 2px solid #C7AD90;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

    .important-notice h4 {
        color: #9B8570;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 400;
        letter-spacing: 1px;
    }

    .important-notice p {
        margin-bottom: 0.8rem;
    }

/* Table */
.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
}

    .terms-table th,
    .terms-table td {
        padding: 1rem;
        text-align: left;
        border: 1px solid #F0E5D9;
    }

    .terms-table th {
        background: linear-gradient(135deg, #F0E5D9 0%, #E8DDD0 100%);
        color: #9B8570;
        font-weight: 400;
        letter-spacing: 1px;
    }

    .terms-table td {
        color: #58595B;
        font-weight: 300;
    }

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    color: white;
}

    .contact-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 300;
        letter-spacing: 2px;
    }

    .contact-cta p {
        color: white;
        margin-bottom: 1.5rem;
    }

.contact-button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: white;
    color: #9B8570;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .contact-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        text-align: center;
    }

    .terms-table {
        font-size: 0.9rem;
    }

        .terms-table th,
        .terms-table td {
            padding: 0.7rem;
        }
}
