 /* Enhanced Terms & Conditions Styles */
 body {
    margin-top: 80px;
}
 :root {
    --ivory: #FEFCFA;
    --clay: #E3C8B0;
    --sage: #B5C2B7;
    --taupe: #85827C;
    --dusty-rose: #D4B9A3;
    --deep-moss: #8B5E3C;
    --chocolate: #4A4845;
    --linen: #F4ECE3;
}

/* Hero Section */
.terms-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    text-align: center;
    padding: 0 2rem;
}

.terms-hero-content {
    max-width: 800px;
    z-index: 1;
}

.terms-hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--chocolate);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.terms-hero-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.2rem;
    color: var(--taupe);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Terms Content */
.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
}

.terms-intro {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1rem;
    color: var(--taupe);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 1rem;
}

.terms-section {
    margin-bottom: 4rem;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--dusty-rose);
}

.terms-section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 2rem;
    color: var(--chocolate);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.terms-section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--dusty-rose), transparent);
}

.terms-content {
    font-family: 'Urbanist', sans-serif;
    color: var(--taupe);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.terms-list {
    list-style-type: none;
    margin: 1.5rem 0;
}

.terms-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dusty-rose);
    font-size: 1.5rem;
    line-height: 1;
}

.terms-highlight {
    background-color: rgba(212, 165, 154, 0.1);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    border-left: 3px solid var(--dusty-rose);
}

.terms-highlight-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.3rem;
    color: var(--chocolate);
    margin-bottom: 1rem;
}

/* Floating Elements */
.floating-leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        margin-top: 70px;
    }
    .terms-hero {
        height: 40vh;
        min-height: 300px;
    }

    .terms-hero-title {
        font-size: 2.5rem;
    }

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

    .terms-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    body {
        margin-top: 60px;
    }
    .terms-hero {
        height: 35vh;
        min-height: 250px;
    }

    .terms-hero-title {
        font-size: 2rem;
    }

    .terms-container {
        padding: 3rem 1rem;
    }

    .terms-section {
        padding-left: 1rem;
    }
}