:root {
        --primary-color: #6c5ce7;
        --secondary-color: #8e44ad;
        --accent-color: #e84393;
        --accent-secondary: #00cec9;
        --light-color: #f8f9fa;
        --dark-color: #2d3436;
        --success-color: #00b894;
        --warning-color: #ff7675;
        --info-color: #0984e3;
        --border-radius: 10px;
        --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        --transition: all 0.3s ease;
    }

   

    .container {
        width: 100%;
        max-width: auto;
        margin: 0 auto;
        padding: 0 20px;
    }

    .inner-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .btn {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 14px 28px;
        border: none;
        border-radius: var(--border-radius);
        cursor: pointer;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        position: relative;
        z-index: 1;
        overflow: hidden;
        letter-spacing: 0.5px;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        z-index: -1;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .btn:hover::before {
        opacity: 1;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--box-shadow);
    }

    .btn-secondary {
        background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    }

    .btn-secondary::before {
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--secondary-color);
        text-align: center;
        position: relative;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        margin: 15px auto 0;
        border-radius: 2px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        text-align: center;
        color: #6c757d;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
    }

    .section-padding {
        padding: 100px 0;
    }

    .text-center {
        text-align: center;
    }

    .text-gradient {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .flex {
        display: flex;
    }

    .flex-wrap {
        flex-wrap: wrap;
    }

    .justify-between {
        justify-content: space-between;
    }

    .justify-center {
        justify-content: center;
    }

    .align-center {
        align-items: center;
    }

    .grid {
        display: grid;
        gap: 30px;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Header Styles */
    .header {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-decoration: none;
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        color: var(--dark-color);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-links a:hover {
        color: var(--primary-color);
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark-color);
    }

    /* Hero Banner */
    .hero-banner {
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.9), rgba(232, 67, 147, 0.9)), url('https://images.pexels.com/photos/6476254/pexels-photo-6476254.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover no-repeat;
        padding: 200px 0 120px;
        color: white;
        text-align: center;
        position: relative;
    }

    .hero-banner::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to top, #f8f9fa, transparent);
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 25px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -1px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 30px;
        opacity: 0.95;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
        font-weight: 400;
    }

    /* Terms Content Styles */
    .terms-section {
        background: linear-gradient(135deg, #fff, #f8f9fa);
        position: relative;
        overflow: hidden;
    }

    .terms-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(108, 92, 231, 0.05), rgba(108, 92, 231, 0) 70%);
    }

    .terms-section::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 67, 147, 0.05), rgba(232, 67, 147, 0) 70%);
    }

    .terms-container {
        position: relative;
        z-index: 1;
        background-color: white;
        border-radius: 20px;
        box-shadow: var(--box-shadow);
        padding: 60px;
        margin-bottom: 50px;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .terms-heading {
        font-size: 2.2rem;
        margin-bottom: 25px;
        color: var(--secondary-color);
        padding-bottom: 15px;
        border-bottom: 2px solid #f1f3f9;
        font-weight: 700;
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
    }

    .terms-heading-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        border-radius: 50%;
        margin-right: 15px;
        font-size: 1.5rem;
        font-weight: 600;
        flex-shrink: 0;
    }

    .terms-subheading {
        font-size: 1.5rem;
        margin: 35px 0 20px;
        color: var(--secondary-color);
        font-weight: 600;
        letter-spacing: -0.3px;
    }

    .terms-text {
        margin-bottom: 20px;
        color: #6c757d;
        line-height: 1.8;
    }

    .terms-text a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        border-bottom: 1px dashed var(--primary-color);
    }

    .terms-text a:hover {
        color: var(--accent-color);
        border-bottom-color: var(--accent-color);
    }

    .terms-list {
        margin-bottom: 25px;
        padding-left: 20px;
    }

    .terms-list-item {
        margin-bottom: 12px;
        color: #6c757d;
        position: relative;
        padding-left: 15px;
    }

    .terms-list-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    }

    .terms-highlight {
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(232, 67, 147, 0.05));
        padding: 30px;
        border-radius: 15px;
        margin: 35px 0;
        border-left: 4px solid var(--primary-color);
        position: relative;
    }

    .terms-highlight::before {
        content: '\f05a';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: -15px;
        left: 30px;
        background: white;
        color: var(--primary-color);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .terms-highlight-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--secondary-color);
    }

    .terms-highlight-text {
        color: #6c757d;
        line-height: 1.8;
    }

    .terms-date {
        font-style: italic;
        color: #6c757d;
        margin-top: 50px;
        padding-top: 25px;
        border-top: 2px solid #f1f3f9;
        text-align: right;
    }

    .terms-intro {
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.03), rgba(232, 67, 147, 0.03));
        padding: 40px;
        border-radius: 15px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
    }

    .terms-intro::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    }

    .terms-intro-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--secondary-color);
        font-weight: 700;
    }

    .terms-intro-text {
        color: #6c757d;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .terms-section-divider {
        height: 2px;
        background: linear-gradient(to right, rgba(108, 92, 231, 0.1), rgba(232, 67, 147, 0.1));
        margin: 60px 0;
        position: relative;
    }

    .terms-section-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: white;
        border: 2px solid rgba(108, 92, 231, 0.3);
        border-radius: 50%;
    }

    .terms-cta {
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(232, 67, 147, 0.1));
        border-radius: 15px;
        padding: 40px;
        margin: 50px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .terms-cta::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(108, 92, 231, 0.2), rgba(108, 92, 231, 0) 70%);
        border-radius: 50%;
    }

    .terms-cta::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(232, 67, 147, 0.2), rgba(232, 67, 147, 0) 70%);
        border-radius: 50%;
    }

    .terms-cta-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--secondary-color);
        font-weight: 700;
    }

    .terms-cta-text {
        color: #6c757d;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
    }

    /* Footer */
    .footer {
        background-color: var(--dark-color);
        color: white;
        padding: 80px 0 30px;
        position: relative;
        overflow: hidden;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--accent-secondary), var(--success-color));
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 20px;
        display: inline-block;
    }

    .footer-about {
        margin-bottom: 25px;
        opacity: 0.8;
        line-height: 1.8;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .social-link:hover::before {
        opacity: 1;
    }

    .social-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
        color: white;
        position: relative;
        padding-bottom: 10px;
        font-weight: 600;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
    }

    .footer-links a i {
        margin-right: 10px;
        font-size: 0.8rem;
        color: var(--accent-color);
    }

    .footer-links a:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .footer-newsletter p {
        margin-bottom: 20px;
        opacity: 0.8;
        line-height: 1.8;
    }

    .footer-form {
        display: flex;
        overflow: hidden;
        border-radius: var(--border-radius);
    }

    .footer-input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        font-size: 0.95rem;
    }

    .footer-input:focus {
        outline: none;
    }

    .footer-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        border: none;
        padding: 0 20px;
        cursor: pointer;
        transition: var(--transition);
    }

    .footer-btn:hover {
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    }

    .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.7;
        font-size: 0.95rem;
        position: relative;
        z-index: 1;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3.5rem;
        }
        
        .section-padding {
            padding: 80px 0;
        }
    }

    @media (max-width: 992px) {
        .section-padding {
            padding: 70px 0;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .terms-container {
            padding: 40px;
        }
    }

    @media (max-width: 768px) {
        .section-padding {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2rem;
        }

        .hero-title {
            font-size: 2.8rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-links li {
            margin: 10px 0;
        }

        .mobile-menu-btn {
            display: block;
        }

        .terms-container {
            padding: 30px;
        }

        .terms-heading {
            font-size: 1.8rem;
        }

        .terms-heading-number {
            width: 40px;
            height: 40px;
            font-size: 1.3rem;
        }

        .terms-subheading {
            font-size: 1.3rem;
        }

        .terms-intro {
            padding: 30px;
        }

        .terms-intro-title {
            font-size: 1.6rem;
        }

        .terms-cta {
            padding: 30px;
        }

        .terms-cta-title {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 576px) {
        .section-padding {
            padding: 50px 0;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .hero-title {
            font-size: 2.2rem;
        }

        .terms-container {
            padding: 25px;
        }

        .terms-heading {
            font-size: 1.6rem;
            flex-direction: column;
            align-items: flex-start;
        }

        .terms-heading-number {
            margin-bottom: 10px;
        }

        .footer-form {
            flex-direction: column;
        }

        .footer-input {
            width: 100%;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        .footer-btn {
            width: 100%;
            padding: 12px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }

        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
        }
    }