/* UPI Game - Main Styles */

/* CSS Variables */
:root {
    --eerie-black: #1c1c1cff;
    --night: #111111ff;
    --cream: #fffed5ff;
    --canary: #fee402ff;
    --jonquil: #fdca00ff;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* AOS (Animate On Scroll) - Pure CSS Implementation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS Animation Classes */
.aos-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.aos-fade-up.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.aos-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.aos-fade-left.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.aos-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.aos-fade-right.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.aos-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.aos-scale-in.aos-animate {
    opacity: 1;
    transform: scale(1);
}

.aos-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.aos-slide-up.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* AOS Animation Delays */
.aos-delay-100 { transition-delay: 0.1s; }
.aos-delay-200 { transition-delay: 0.2s; }
.aos-delay-300 { transition-delay: 0.3s; }
.aos-delay-400 { transition-delay: 0.4s; }
.aos-delay-500 { transition-delay: 0.5s; }
.aos-delay-600 { transition-delay: 0.6s; }
.aos-delay-700 { transition-delay: 0.7s; }
.aos-delay-800 { transition-delay: 0.8s; }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--eerie-black);
    background-color: var(--white);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--canary);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
    border: 2px solid transparent;
    display: inline-block;
}

.nav-link:hover {
    background-color: rgba(254, 228, 2, 0.1);
    color: var(--canary);
}

.nav-link.active {
    color: var(--canary);
    border-color: var(--canary);
}

.login-btn, .register-btn {
    background: var(--canary);
    color: var(--eerie-black) !important;
    font-weight: bold;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    transition: var(--transition);
}

.login-btn:hover, .register-btn:hover {
    background: var(--jonquil);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 228, 2, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--canary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    padding-left: 100px;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--canary);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--cream);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--canary);
    color: var(--eerie-black);
}

.btn-primary:hover {
    background: var(--jonquil);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 228, 2, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--canary);
    border: 2px solid var(--canary);
}

.btn-secondary:hover {
    background: var(--canary);
    color: var(--eerie-black);
    transform: translateY(-2px);
}

/* Registration Steps Section */
.registration-steps {
    padding: 4rem 0;
    background: var(--cream);
}

.registration-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--eerie-black);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--canary);
    color: var(--eerie-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--eerie-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Games Preview Section */
.games-preview {
    padding: 4rem 0;
    background: var(--cream);
}

.games-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--eerie-black);
}

.games-preview > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-category {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.game-img {
    width: 100%;
    height: 301px;
    object-fit: cover;
}

.game-category h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--eerie-black);
    font-size: 1.3rem;
}

.game-category p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Call to Action Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--canary);
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--cream);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--eerie-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--canary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--canary);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: var(--cream);
}

.footer-bottom a {
    color: var(--canary);
    text-decoration: none;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--eerie-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 80px;
        height: 100vh;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    .hero-content {
      
        padding-left:15px;
    
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .step, .feature {
        padding: 1.5rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus {
    outline: 2px solid var(--canary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --eerie-black: #000000;
        --night: #000000;
        --cream: #ffffff;
        --canary: #ffff00;
        --jonquil: #ffff00;
    }
}

/* Print styles */
@media print {
    .header, .footer, .cta-buttons {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* About Content Section */
.about-content {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--canary);
    border-radius: 2px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.about-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--cream);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 3rem;
    position: relative;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--canary);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 3px solid transparent;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--canary);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.team-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-emoji {
    font-size: 4rem;
    margin: 0 auto 1.5rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--canary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(254, 228, 2, 0.3);
}

.team-member:hover .team-emoji {
    transform: scale(1.1);
    background: var(--jonquil);
    box-shadow: 0 8px 25px rgba(254, 228, 2, 0.4);
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Achievements Section */
.achievements-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
}

.achievements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--canary);
    margin-bottom: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 228, 2, 0.2);
    transition: var(--transition);
}

.achievement:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--canary);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--canary);
    margin-bottom: 0.5rem;
    display: block;
}

.achievement-label {
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.4;
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .values-section,
    .team-section,
    .achievements-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero {
        padding: 4rem 0;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .value-item,
    .team-member {
        padding: 1.5rem;
    }
}

/* Games Page Styles */
.games-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.games-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="games-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23games-grain)"/></svg>');
    opacity: 0.3;
}

.games-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.games-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.games-hero .hero-description {
    font-size: 1.1rem;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Game Categories Section */
.game-categories {
    padding: 5rem 0;
    background: var(--white);
}

.game-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 3rem;
    position: relative;
}

.game-categories h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--canary);
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 3px solid transparent;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--canary);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.category-card h3 {
    font-size: 1.8rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.category-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--canary);
    color: var(--eerie-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Featured Games Section */
.featured-games {
    padding: 5rem 0;
    background: var(--cream);
}

.featured-games h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.featured-games > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.featured-game {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.featured-game:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.game-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-size: 1.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.game-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    background: var(--cream);
    color: var(--eerie-black);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Games Benefits Section */
.games-benefits {
    padding: 5rem 0;
    background: var(--white);
}

.games-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 3rem;
    position: relative;
}

.games-benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--canary);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--cream);
    border-radius: 20px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Games Statistics Section */
.games-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
}

.games-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--canary);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 228, 2, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--canary);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--canary);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.4;
}

/* Game Providers Section */
.game-providers {
    padding: 5rem 0;
    background: var(--cream);
}

.game-providers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.game-providers > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.provider-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.provider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.provider-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
}

.provider-card h3 {
    font-size: 1.3rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.provider-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Games Demo Section */
.games-demo {
    padding: 5rem 0;
    background: var(--white);
}

.games-demo h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.games-demo > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.demo-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.demo-game {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.demo-game:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.demo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.demo-game h3 {
    font-size: 1.4rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.demo-game p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Design for Games Page */
@media (max-width: 768px) {
    .games-hero h1 {
        font-size: 2.5rem;
    }
    
    .games-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .games-hero .hero-description {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-games-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-games {
        grid-template-columns: 1fr;
    }
    
    .game-categories,
    .featured-games,
    .games-benefits,
    .games-stats,
    .game-providers,
    .games-demo {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .games-hero h1 {
        font-size: 2rem;
    }
    
    .games-hero {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .category-card,
    .featured-game,
    .benefit-item,
    .provider-card,
    .demo-game {
        padding: 1.5rem;
    }
    
    .game-stats {
        justify-content: center;
    }
} 

/* Contact Us Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.contact-hero .hero-description {
    font-size: 1.1rem;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Contact Information Section */
.contact-info {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 3px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--canary);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-link {
    color: var(--canary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

.response-time {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--cream);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.contact-form-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--eerie-black);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--eerie-black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--canary);
    box-shadow: 0 0 0 3px rgba(254, 228, 2, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--canary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* FAQ Quick Links Section */
.faq-quick-links {
    padding: 5rem 0;
    background: var(--white);
}

.faq-quick-links h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.faq-quick-links > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-link-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.faq-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-link-card h3 {
    font-size: 1.4rem;
    color: var(--eerie-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-link-card ul {
    list-style: none;
    padding: 0;
}

.faq-link-card ul li {
    margin-bottom: 1rem;
}

.faq-link-card ul li a {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem;
    border-radius: 8px;
}

.faq-link-card ul li a:hover {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

.faq-cta {
    text-align: center;
}

/* Support Hours Section */
.support-hours {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
}

.support-hours h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--canary);
    margin-bottom: 3rem;
}

.support-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.schedule-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 228, 2, 0.2);
    transition: var(--transition);
}

.schedule-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--canary);
}

.schedule-item .day {
    font-size: 1.2rem;
    color: var(--canary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.schedule-item .time {
    font-size: 1rem;
    color: var(--cream);
}

.support-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* Responsive Design for Contact Us Page */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero .hero-description {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq-links-grid {
        grid-template-columns: 1fr;
    }
    
    .support-schedule {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info,
    .contact-form-section,
    .faq-quick-links,
    .support-hours {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero {
        padding: 4rem 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-card,
    .faq-link-card {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }
} 

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-grain)"/></svg>');
    opacity: 0.3;
}

.faq-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.faq-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.faq-hero .hero-description {
    font-size: 1.1rem;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* FAQ Search Section */
.faq-search {
    padding: 3rem 0;
    background: var(--white);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--eerie-black);
}

.search-input:focus {
    outline: none;
    border-color: var(--canary);
    box-shadow: 0 0 0 3px rgba(254, 228, 2, 0.1);
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--canary);
    color: var(--eerie-black);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--jonquil);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 228, 2, 0.3);
}

/* FAQ Categories Section */
.faq-categories {
    padding: 4rem 0;
    background: var(--cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 3px solid transparent;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--canary);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Content Section */
.faq-content {
    padding: 5rem 0;
    background: var(--white);
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.faq-item {
    margin-bottom: 2rem;
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    background: var(--canary);
    color: var(--eerie-black);
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.faq-item h3:hover {
    background: var(--jonquil);
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.faq-item.active h3::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--eerie-black);
    font-weight: 600;
}

/* Still Have Questions Section */
.still-have-questions {
    padding: 5rem 0;
    background: var(--cream);
    text-align: center;
}

.still-have-questions h2 {
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.still-have-questions p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Search Functionality */
.faq-item.hidden {
    display: none;
}

.faq-item.highlight {
    background: rgba(254, 228, 2, 0.1);
    border: 2px solid var(--canary);
}

/* FAQ Navigation */
.faq-navigation {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.faq-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-nav-list li {
    margin-bottom: 0.5rem;
}

.faq-nav-list a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}

.faq-nav-list a:hover,
.faq-nav-list a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }
    
    .faq-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-hero .hero-description {
        font-size: 1rem;
    }
    
    .search-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input,
    .search-btn {
        width: 100%;
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-hero,
    .faq-search,
    .faq-categories,
    .faq-content,
    .still-have-questions {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-hero {
        padding: 4rem 0;
    }
    
    .category-card,
    .faq-item h3 {
        padding: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }
    
    .search-input,
    .search-btn {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
} 

/* Support Team Page Styles */
.support-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="support-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23support-grain)"/></svg>');
    opacity: 0.3;
}

.support-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.support-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.support-hero .hero-description {
    font-size: 1.1rem;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Support Overview Section */
.support-overview {
    padding: 5rem 0;
    background: var(--white);
}

.support-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 3rem;
    position: relative;
}

.support-overview h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--canary);
    border-radius: 2px;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--cream);
    border-radius: 20px;
    transition: var(--transition);
}

.support-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.support-feature h3 {
    font-size: 1.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.support-feature p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Members Section */
.team-members {
    padding: 5rem 0;
    background: var(--cream);
}

.team-members h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--canary);
    transition: var(--transition);
}

.team-member:hover .member-img {
    border-color: var(--jonquil);
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--eerie-black);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--canary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.member-expertise {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.expertise-tag {
    background: var(--cream);
    color: var(--eerie-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Support Channels Section */
.support-channels {
    padding: 5rem 0;
    background: var(--white);
}

.support-channels h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 3rem;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.channel-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.channel-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.channel-card h3 {
    font-size: 1.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.channel-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.channel-link {
    color: var(--canary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.channel-link:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

.live-chat-btn {
    background: var(--canary);
    color: var(--eerie-black);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.live-chat-btn:hover {
    background: var(--jonquil);
    transform: translateY(-2px);
}

.response-time {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Support Process Section */
.support-process {
    padding: 5rem 0;
    background: var(--cream);
}

.support-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--canary);
    color: var(--eerie-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Support Statistics Section */
.support-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
}

.support-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--canary);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 228, 2, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--canary);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--canary);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.4;
}

/* Support Training Section */
.support-training {
    padding: 5rem 0;
    background: var(--white);
}

.support-training h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.support-training > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.training-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.training-area {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.training-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.training-area h3 {
    font-size: 1.3rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.training-area p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Support Feedback Section */
.support-feedback {
    padding: 5rem 0;
    background: var(--cream);
}

.support-feedback h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 3rem;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feedback-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feedback-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feedback-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feedback-author {
    color: var(--canary);
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Support Section */
.contact-support {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.contact-support h2 {
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1rem;
}

.contact-support p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Support Team Page */
@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 2.5rem;
    }
    
    .support-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .support-hero .hero-description {
        font-size: 1rem;
    }
    
    .support-features {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .training-areas {
        grid-template-columns: 1fr;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .support-hero,
    .support-overview,
    .team-members,
    .support-channels,
    .support-process,
    .support-stats,
    .support-training,
    .support-feedback,
    .contact-support {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .support-hero h1 {
        font-size: 2rem;
    }
    
    .support-hero {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .support-feature,
    .team-member,
    .channel-card,
    .process-step,
    .training-area,
    .feedback-item {
        padding: 1.5rem;
    }
    
    .member-img {
        width: 120px;
        height: 120px;
    }
} 

/* Privacy Policy Page Styles */
.policy-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="policy-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23policy-grain)"/></svg>');
    opacity: 0.3;
}

.policy-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.policy-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Privacy Policy Content Section */
.policy-content {
    padding: 5rem 0;
    background: var(--white);
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.policy-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.policy-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.policy-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.policy-text li::before {
    content: '•';
    color: var(--canary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 1.2rem;
}

.policy-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.policy-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.policy-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Policy Content Highlights */
.policy-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.policy-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.policy-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Policy Section Navigation */
.policy-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.policy-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-nav li {
    margin-bottom: 0.5rem;
}

.policy-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.policy-nav a:hover,
.policy-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Policy Content Responsive Design */
@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2.5rem;
    }
    
    .policy-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-text {
        padding: 0 1rem;
    }
    
    .policy-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
    }
    
    .policy-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .policy-text p,
    .policy-text li {
        font-size: 1rem;
    }
    
    .policy-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .policy-hero,
    .policy-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .policy-hero {
        padding: 4rem 0;
    }
    
    .policy-text {
        padding: 0 0.5rem;
    }
    
    .policy-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .policy-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .policy-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .policy-text .highlight,
    .policy-text .important-note {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
    display: flex;
    align-items: center;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--canary);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 23px;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(254,228,2,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(254,228,2,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grain)"/></svg>');
    opacity: 0.3;
}

.terms-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--canary);
    position: relative;
    z-index: 2;
}

.terms-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.terms-hero .last-updated {
    color: var(--cream);
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

.terms-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--jonquil);
}

.terms-text h3 {
    font-size: 1.6rem;
    color: var(--eerie-black);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.terms-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.terms-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.terms-text li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.terms-text li::before {
    content: '▶';
    color: var(--canary);
    font-size: 0.8rem;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.5em;
}

.terms-text strong {
    color: var(--eerie-black);
    font-weight: 600;
}

.terms-text a {
    color: var(--canary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-text a:hover {
    color: var(--jonquil);
    text-decoration: underline;
}

/* Terms Content Highlights */
.terms-text .highlight {
    background: rgba(254, 228, 2, 0.1);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--canary);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.terms-text .important-note {
    background: rgba(254, 228, 2, 0.15);
    border: 2px solid var(--canary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

.terms-text .legal-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.terms-text .legal-warning::before {
    content: '⚖️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Terms Section Navigation */
.terms-nav {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
}

.terms-nav h3 {
    color: var(--eerie-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--canary);
    background: rgba(254, 228, 2, 0.1);
}

/* Terms Content Responsive Design */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }
    
    .terms-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-text {
        padding: 0 1rem;
    }
    
    .terms-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .terms-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .terms-text h2::after {
        left: 0;
    }
    
    .terms-text h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-text p,
    .terms-text li {
        font-size: 1rem;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .terms-hero,
    .terms-content {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero {
        padding: 4rem 0;
    }
    
    .terms-text {
        padding: 0 0.5rem;
    }
    
    .terms-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-text h3 {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem 0;
    }
    
    .terms-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .terms-text .highlight,
    .terms-text .important-note,
    .terms-text .legal-warning {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Terms & Conditions Page Styles */
.terms-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0;
}

/* Disclaimer Page Styles */
.disclaimer-hero {
    background: linear-gradient(135deg, var(--eerie-black), var(--night));
    color: var(--white);
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.disclaimer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.disclaimer-hero .container {
    position: relative;
    z-index: 2;
}

.disclaimer-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--canary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.disclaimer-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.disclaimer-hero .last-updated {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
    background: rgba(254, 228, 2, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(254, 228, 2, 0.3);
}

/* Disclaimer Content */
.disclaimer-content {
    padding: 4rem 0;
    background: var(--white);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.disclaimer-text h2 {
    font-size: 2.2rem;
    color: var(--eerie-black);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--canary);
    position: relative;
    display: flex;
    align-items: center;
}

.disclaimer-text h2::before {
    content: '⚠️';
    margin-right: 15px;
    font-size: 1.5rem;
}

.disclaimer-text h2:first-child {
    margin-top: 0;
}

.disclaimer-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--eerie-black);
    text-align: justify;
}

.disclaimer-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    list-style: none;
}

.disclaimer-text li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: var(--eerie-black);
    position: relative;
    padding-left: 1.5rem;
}

.disclaimer-text li::before {
    content: '•';
    color: var(--canary);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(135deg, var(--cream), var(--jonquil));
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--eerie-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    color: var(--eerie-black);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: var(--eerie-black);
    color: var(--white);
    border: 2px solid var(--eerie-black);
}

.cta-buttons .btn-primary:hover {
    background: var(--white);
    color: var(--eerie-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--eerie-black);
    border: 2px solid var(--eerie-black);
}

.cta-buttons .btn-secondary:hover {
    background: var(--eerie-black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Disclaimer Responsive Design */
@media (max-width: 768px) {
    .disclaimer-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .disclaimer-hero h1 {
        font-size: 2.8rem;
    }
    
    .disclaimer-hero .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .disclaimer-content {
        padding: 3rem 0;
    }
    
    .disclaimer-text {
        padding: 0 1rem;
    }
    
    .disclaimer-text h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .disclaimer-text h2::before {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .disclaimer-text p {
        font-size: 1rem;
    }
    
    .disclaimer-text li {
        font-size: 1rem;
    }
    
    .disclaimer-text ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .cta {
        padding: 3rem 0;
    }
    
    .cta h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .cta p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .disclaimer-hero {
        padding: 3rem 0 2rem 0;
    }
    
    .disclaimer-hero h1 {
        font-size: 2.2rem;
    }
    
    .disclaimer-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .disclaimer-content {
        padding: 2rem 0;
    }
    
    .disclaimer-text {
        padding: 0 0.5rem;
    }
    
    .disclaimer-text h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .disclaimer-text p {
        font-size: 0.95rem;
    }
    
    .disclaimer-text li {
        font-size: 0.95rem;
    }
    
    .disclaimer-text ul {
        margin: 1rem 0 1rem 1rem;
    }
    
    .cta {
        padding: 2rem 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        min-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
} 