/* Base Styles & CSS Variables */
            :root {
                --primary: #4CAF50;
                --primary-dark: #388E3C;
                --primary-light: #81C784;
                --secondary: #212121;
                --accent: #FF9800;
                --light: #FFFFFF;
                --gray-light: #F5F5F5;
                --gray: #9E9E9E;
                --gray-dark: #616161;
                --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
                --transition: all 0.3s ease;
            }

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

            body {
                font-family: 'Poppins', sans-serif;
                line-height: 1.6;
                color: var(--secondary);
                background-color: var(--light);
                overflow-x: hidden;
            }

            h1, h2, h3, h4 {
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 1rem;
            }

            a {
                text-decoration: none;
                color: inherit;
            }

            ul {
                list-style: none;
            }

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

            .container {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            .section {
                padding: 80px 0;
            }

            .section-title {
                text-align: center;
                margin-bottom: 50px;
                position: relative;
            }

            .section-title h2 {
                font-size: 2.5rem;
                color: var(--secondary);
                display: inline-block;
            }

            .section-title h2 span {
                color: var(--primary);
            }

            .section-title::after {
                content: '';
                position: absolute;
                width: 70px;
                height: 4px;
                background-color: var(--primary);
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
            }

            .btn {
                display: inline-block;
                padding: 12px 30px;
                border-radius: 5px;
                font-weight: 600;
                font-size: 1rem;
                transition: var(--transition);
                cursor: pointer;
                border: none;
                font-family: 'Montserrat', sans-serif;
                text-align: center;
            }

            .btn-primary {
                background-color: var(--primary);
                color: var(--light);
            }

            .btn-primary:hover {
                background-color: var(--primary-dark);
                transform: translateY(-3px);
                box-shadow: var(--shadow);
            }

            .btn-outline {
                background-color: transparent;
                color: var(--primary);
                border: 2px solid var(--primary);
            }

            .btn-outline:hover {
                background-color: var(--primary);
                color: var(--light);
            }

            /* Header & Navigation - FIXED */
            header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                background-color: var(--light);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                padding: 15px 0;
                transition: var(--transition);
            }

            .header-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                height: 50px;
            }

            .logo {
                display: flex;
                align-items: center;
                height: 100%;
                z-index: 1001;
                gap: 8px; /* Reduced for closer spacing */
            }

            .logo-image-container {
                height: 50px;
                display: flex;
                align-items: center; /* Center alignment */
                margin-bottom: 3px; /* Push image slightly upward */
            }

            .logo-image {
                height: 42px; /* Slightly smaller for better proportion */
                width: auto;
                object-fit: contain;
                display: block;
            }

            .logo-text {
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                font-size: 1.8rem;
                color: var(--secondary);
                display: flex;
                align-items: center;
                height: 50px;
                padding-bottom: 1px; /* Reduced for tighter alignment */
            }

            .logo-text span {
                color: var(--primary);
            }

            nav {
                display: flex;
                align-items: center;
                height: 100%;
            }

            nav ul {
                display: flex;
                align-items: center;
                margin: 0;
                padding: 0;
            }

            nav ul li {
                margin-left: 30px;
                display: flex;
                align-items: center;
            }

            nav ul li a {
                font-weight: 600;
                color: var(--secondary);
                transition: var(--transition);
                position: relative;
                padding: 8px 0;
                display: flex;
                align-items: center;
                height: 100%;
            }

            nav ul li a:hover {
                color: var(--primary);
            }

            nav ul li a.active {
                color: var(--primary);
            }

            nav ul li a.active::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 2px;
                background-color: var(--primary);
            }

            nav ul li a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background-color: var(--primary);
                transition: var(--transition);
            }

            nav ul li a:hover::after {
                width: 100%;
            }

            .nav-cta {
                margin-left: 30px;
            }

            .mobile-menu-btn {
                display: none;
                background: none;
                border: none;
                font-size: 1.5rem;
                color: var(--secondary);
                cursor: pointer;
                padding: 5px;
                z-index: 1001;
            }

            /* Page Header */
            .page-header {
                padding: 150px 0 80px;
                background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('/assets/terms/terms-breadcrumb.avif');
                background-size: cover;
                background-position: center;
                color: var(--light);
                text-align: center;
            }

            .page-header h1 {
                font-size: 3.5rem;
                margin-bottom: 20px;
            }

            .page-header p {
                font-size: 1.2rem;
                max-width: 700px;
                margin: 0 auto 30px;
                opacity: 0.9;
            }

            .breadcrumb {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                font-size: 1.1rem;
            }

            .breadcrumb a {
                opacity: 0.9;
                transition: var(--transition);
            }

            .breadcrumb a:hover {
                opacity: 1;
                text-decoration: underline;
            }

            .breadcrumb i {
                font-size: 0.8rem;
            }

            /* Terms Content - FIXED WIDTH */
            .terms-content {
                width: 100%;
                padding: 60px 0;
            }

            .terms-section {
                margin-bottom: 50px;
                padding: 40px;
                background-color: var(--gray-light);
                border-radius: 15px;
                box-shadow: var(--shadow);
            }

            .terms-section h2 {
                color: var(--primary);
                font-size: 1.8rem;
                margin-bottom: 25px;
                padding-bottom: 15px;
                border-bottom: 2px solid var(--primary-light);
            }

            .terms-section h3 {
                color: var(--secondary);
                font-size: 1.4rem;
                margin: 25px 0 15px;
            }

            .terms-section p {
                color: var(--gray-dark);
                margin-bottom: 20px;
                line-height: 1.8;
            }

            .terms-section ul {
                margin: 20px 0;
                padding-left: 20px;
            }

            .terms-section ul li {
                margin-bottom: 12px;
                padding-left: 10px;
                position: relative;
                color: var(--gray-dark);
            }

            .terms-section ul li::before {
                content: '•';
                color: var(--primary);
                font-weight: bold;
                position: absolute;
                left: -15px;
            }

            .terms-section ol {
                margin: 20px 0;
                padding-left: 25px;
                counter-reset: item;
            }

            .terms-section ol li {
                margin-bottom: 12px;
                padding-left: 5px;
                color: var(--gray-dark);
            }

            .terms-table {
                width: 100%;
                border-collapse: collapse;
                margin: 25px 0;
                background-color: var(--light);
                border-radius: 10px;
                overflow: hidden;
                box-shadow: var(--shadow);
            }

            .terms-table th {
                background-color: var(--primary);
                color: var(--light);
                padding: 15px;
                text-align: left;
                font-weight: 600;
            }

            .terms-table td {
                padding: 15px;
                border-bottom: 1px solid var(--gray-light);
                color: var(--gray-dark);
            }

            .terms-table tr:last-child td {
                border-bottom: none;
            }

            .terms-table tr:hover {
                background-color: rgba(76, 175, 80, 0.05);
            }

            .update-info {
                background-color: var(--primary-light);
                padding: 25px;
                border-radius: 10px;
                margin: 30px 0;
                border-left: 5px solid var(--primary);
            }

            .update-info h4 {
                color: var(--primary-dark);
                margin-bottom: 10px;
                font-size: 1.2rem;
            }

            .update-info p {
                margin-bottom: 10px;
                color: var(--secondary);
            }

            .terms-note {
                background-color: #e8f5e9;
                padding: 20px;
                border-radius: 10px;
                margin: 30px 0;
                border-left: 4px solid var(--primary);
                font-style: italic;
            }

            .highlight-box {
                background-color: #fff3e0;
                border-left: 4px solid var(--accent);
                padding: 20px;
                margin: 25px 0;
                border-radius: 8px;
            }

            /* FAQ Section */
            .faq-section {
                background-color: var(--gray-light);
            }

            .faq-container {
                width: 100%;
            }

            .faq-item {
                background-color: var(--light);
                border-radius: 10px;
                margin-bottom: 20px;
                box-shadow: var(--shadow);
                overflow: hidden;
            }

            .faq-question {
                padding: 25px 30px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                transition: var(--transition);
            }

            .faq-question:hover {
                background-color: rgba(76, 175, 80, 0.05);
            }

            .faq-question h3 {
                font-size: 1.2rem;
                margin: 0;
                color: var(--secondary);
            }

            .faq-toggle {
                color: var(--primary);
                font-size: 1.5rem;
                transition: var(--transition);
            }

            .faq-question.active .faq-toggle {
                transform: rotate(45deg);
            }

            .faq-answer {
                padding: 0 30px;
                max-height: 0;
                overflow: hidden;
                transition: var(--transition);
            }

            .faq-answer.active {
                padding: 0 30px 30px;
                max-height: 500px;
            }

            .faq-answer p {
                color: var(--gray-dark);
                line-height: 1.8;
            }

            /* Contact Info Section */
            .contact-info-card {
                background: linear-gradient(to right, var(--primary), var(--primary-dark));
                color: var(--light);
                padding: 50px;
                border-radius: 15px;
                text-align: center;
                margin: 40px 0;
                box-shadow: var(--shadow);
            }

            .contact-info-card h3 {
                font-size: 1.8rem;
                margin-bottom: 25px;
                color: var(--light);
            }

            .contact-info-card p {
                margin-bottom: 20px;
                font-size: 1.1rem;
                opacity: 0.95;
            }

            .contact-details {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
                margin-top: 30px;
            }

            .contact-detail-item {
                background-color: rgba(255, 255, 255, 0.1);
                padding: 25px;
                border-radius: 10px;
                transition: var(--transition);
            }

            .contact-detail-item:hover {
                background-color: rgba(255, 255, 255, 0.2);
                transform: translateY(-5px);
            }

            .contact-detail-item i {
                font-size: 2rem;
                margin-bottom: 15px;
                color: var(--light);
            }

            .contact-detail-item p {
                margin: 0;
                font-size: 1rem;
            }

            /* Footer */
            footer {
                background-color: var(--secondary);
                color: var(--light);
                padding: 70px 0 20px;
            }

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

            .footer-logo {
                margin-bottom: 20px;
            }

            .footer-logo .logo-text {
                color: var(--light);
            }

            .footer-about p {
                margin-bottom: 20px;
                opacity: 0.8;
            }

            .social-links {
                display: flex;
                gap: 15px;
            }

            .social-links a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background-color: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                transition: var(--transition);
            }

            .social-links a:hover {
                background-color: var(--primary);
                transform: translateY(-5px);
            }

            .footer-heading {
                font-size: 1.3rem;
                margin-bottom: 25px;
                position: relative;
                padding-bottom: 10px;
            }

            .footer-heading::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 40px;
                height: 2px;
                background-color: var(--primary);
            }

            .footer-links ul li {
                margin-bottom: 12px;
            }

            .footer-links ul li a {
                opacity: 0.8;
                transition: var(--transition);
            }

            .footer-links ul li a:hover {
                opacity: 1;
                color: var(--primary);
                padding-left: 5px;
            }

            .footer-contact p {
                display: flex;
                align-items: flex-start;
                margin-bottom: 15px;
                opacity: 0.8;
            }

            .footer-contact i {
                margin-right: 10px;
                color: var(--primary);
                margin-top: 5px;
            }

            .copyright {
                text-align: center;
                padding-top: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                opacity: 0.7;
                font-size: 0.9rem;
            }

            /* Responsive Styles */
            @media (max-width: 1200px) {
                .container {
                    padding: 0 40px;
                }
            }

            @media (max-width: 992px) {
                .terms-content {
                    padding: 40px 0;
                }
                
                .contact-details {
                    grid-template-columns: repeat(2, 1fr);
                }
                
                .terms-section {
                    padding: 30px;
                }
            }

            @media (max-width: 768px) {
                /* ✅ PERFECT HAMBURGER – LARGE, CENTERED, EXTENDED HIT AREA */
                .mobile-menu-btn {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 52px;
                    height: 52px;
                    margin-left: auto;
                    padding: 0;
                    background: none;
                    border: none;
                    font-size: 2rem;
                    color: var(--secondary);
                    cursor: pointer;
                    z-index: 1001;
                    touch-action: manipulation;
                    position: relative;
                }

                /* Expands clickable area – tap anywhere near the icon works */
                .mobile-menu-btn::after {
                    content: '';
                    position: absolute;
                    top: -15px;
                    left: -15px;
                    right: -15px;
                    bottom: -15px;
                    background: transparent;
                }

                .mobile-menu-btn i {
                    line-height: 1;
                }

                nav ul {
                    position: fixed;
                    top: 80px;
                    left: 0;
                    width: 100%;
                    background-color: var(--light);
                    flex-direction: column;
                    align-items: center;
                    padding: 20px 0;
                    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                    transform: translateY(-150%);
                    transition: var(--transition);
                    z-index: 999;
                }

                nav ul.active {
                    transform: translateY(0);
                }

                nav ul li {
                    margin: 15px 0;
                    width: 100%;
                    justify-content: center;
                }

                nav ul li a {
                    padding: 10px 0;
                    width: 100%;
                    justify-content: center;
                }

                .nav-cta {
                    margin-left: 0;
                    margin-top: 10px;
                }

                .page-header h1 {
                    font-size: 2.8rem;
                }

                .section-title h2 {
                    font-size: 2rem;
                }
                
                /* Mobile logo adjustments */
                .logo-image {
                    height: 38px;
                }
                
                .logo-text {
                    font-size: 1.6rem;
                }
                
                .logo {
                    gap: 6px;
                }
                
                .logo-image-container {
                    margin-bottom: 2px;
                }
                
                .terms-section {
                    padding: 25px;
                }
                
                .contact-info-card {
                    padding: 35px 25px;
                }
                
                .contact-details {
                    grid-template-columns: 1fr;
                }

                /* Hide progress ring on mobile */
                .scroll-to-top .progress-ring {
                    display: none;
                }
            }

            @media (max-width: 576px) {
                .container {
                    padding: 0 20px;
                }
                
                .page-header h1 {
                    font-size: 2.2rem;
                }
                
                .page-header p {
                    font-size: 1rem;
                }
                
                .terms-table {
                    display: block;
                    overflow-x: auto;
                }
                
                /* Small mobile logo adjustments */
                .logo-image {
                    height: 33px;
                }
                
                .logo-text {
                    font-size: 1.4rem;
                }
                
                .logo {
                    gap: 5px;
                }
                
                .logo-image-container {
                    margin-bottom: 1px;
                }
                
                .terms-section {
                    padding: 20px;
                }
                
                .contact-info-card {
                    padding: 30px 20px;
                }
                
                .faq-question {
                    padding: 20px;
                }
                
                .faq-answer {
                    padding: 0 20px;
                }
                
                .faq-answer.active {
                    padding: 0 20px 20px;
                }
            }

            /* Premium Scroll-to-Top Button - Clean version (no gradient) */
            .scroll-to-top {
                position: fixed;
                bottom: 40px;
                right: 40px;
                width: 60px;
                height: 60px;
                background: var(--primary);
                color: var(--light);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.8rem;
                cursor: pointer;
                transition: var(--transition);
                opacity: 0;
                visibility: hidden;
                transform: translateY(20px);
                z-index: 999;
                box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
                border: 2px solid var(--light);
            }

            .scroll-to-top.visible {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .scroll-to-top:hover {
                background: var(--primary-dark);
                transform: translateY(-5px);
                box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
            }

            .scroll-to-top:active {
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
            }

            .scroll-to-top .progress-ring {
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                border-radius: 50%;
                z-index: -1;
            }

            .scroll-to-top .progress-ring-circle {
                fill: none;
                stroke: var(--primary-light);
                stroke-width: 2;
                stroke-dasharray: 100;
                stroke-dashoffset: 100;
                transition: stroke-dashoffset 0.3s ease;
                transform: rotate(-90deg);
                transform-origin: 50% 50%;
            }

            .scroll-to-top .pulse-effect {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--primary);
                border-radius: 50%;
                opacity: 0;
                z-index: -1;
                animation: pulse 2s infinite;
            }

            @keyframes pulse {
                0% {
                    transform: scale(1);
                    opacity: 0.8;
                }
                100% {
                    transform: scale(1.3);
                    opacity: 0;
                }
            }

            /* Mobile Responsive */
            @media (max-width: 768px) {
                .scroll-to-top {
                    width: 50px;
                    height: 50px;
                    bottom: 25px;
                    right: 25px;
                    font-size: 1.5rem;
                }
            }

            @media (max-width: 480px) {
                .scroll-to-top {
                    width: 45px;
                    height: 45px;
                    bottom: 20px;
                    right: 20px;
                    font-size: 1.3rem;
                }
            }
            .custom-cursor {
            width: 12px;
            height: 12px;
            background-color: #4CAF50;
            opacity: 0.5;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9999;
            transition: width 0.2s, height 0.2s, background-color 0.2s;
            will-change: transform;
            }

            /* Remove default focus outline from all interactive elements */
            button:focus,
            a:focus,
            .btn:focus,
            input:focus,
            textarea:focus,
            select:focus {
                outline: none;
                box-shadow: none;
            }

            /* Add a subtle, premium focus style for keyboard users (optional but recommended) */
            button:focus-visible,
            a:focus-visible,
            .btn:focus-visible,
            input:focus-visible,
            textarea:focus-visible,
            select:focus-visible {
                outline: 2px solid var(--primary, #4CAF50);
                outline-offset: 2px;
                border-radius: 4px;
            }

            /* Force remove all focus outlines and rings */
            button:focus,
            a:focus,
            .btn:focus,
            input:focus,
            textarea:focus,
            select:focus,
            [tabindex]:focus,
            [contenteditable]:focus,
            [role="button"]:focus,
            [type="button"]:focus,
            [type="submit"]:focus,
            [type="reset"]:focus {
                outline: none !important;
                box-shadow: none !important;
                -webkit-tap-highlight-color: transparent !important; /* Removes mobile tap highlight */
            }

            /* Optional: keep a visible focus for keyboard users (accessible) */
            button:focus-visible,
            a:focus-visible,
            .btn:focus-visible,
            input:focus-visible,
            textarea:focus-visible,
            select:focus-visible,
            [tabindex]:focus-visible {
                outline: 2px solid var(--primary, #4CAF50) !important;
                outline-offset: 2px !important;
                box-shadow: none !important;
            }