:root {
            --primary-blue: #0d6efd;
            --accent-teal: #0d6efd; /* Used for illustrations */
            --dark-bg: #212529;
            --light-bg: #f8fafc;
            --text-main: #334155;
            --card-border: 1px solid #e2e8f0;
            --dark: #0f172a;
            --slate: #64748b;
            --glass: rgba(255, 255, 255, 0.9);
            --custom-blue: #0d6efd;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background-color: var(--light-bg);
            scroll-behavior: smooth;
        }

        .text-info  {
            color: var(--custom-blue) !important;
        }

        /* 1. Header & Hero (image_4.png) */
        .navbar {
            background: var(--dark-bg);
            padding: 1rem 0;
            border-bottom: 2px solid var(--primary-blue);
        }

        .navbar-brand { color: white !important; font-weight: 700; font-size: 1.5rem; }
        .nav-link { color: rgba(255,255,255,0.85) !important; font-weight: 500; }
        .nav-link:hover { color: var(--primary-blue) !important; }

        .hero-section {
            background: radial-gradient(circle, var(--dark-bg) 60%, var(--primary-blue) 120%), 
                        url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?q=80&w=2000') center/cover;
            height: 70vh;
            color: white;
            display: flex;
            align-items: center;
        }

        .hero-title { font-size: 3.5rem; font-weight: 700; max-width: 800px; margin: 0 auto; line-height: 1.2; }
        .cta-btn { font-size: 1.1rem; padding: 12px 30px; border-radius: 8px; font-weight: 600; }

        /* Ticker (image_4.png) */
        /* .ticker-strip { background: white; border-bottom: 1px solid #e2e8f0; padding: 10px 0; font-size: 0.9rem; font-weight: 500;}
        .ticker-item { margin-right: 30px; display: inline-block; white-space: nowrap;}
        .ticker-down { color: #dc3545; }
        .ticker-up { color: #28a745; } */

        /* 2. Textual Intro & Layout (image_4.png) */
        .intro-section { padding: 5rem 0; }
        .sub-header { font-weight: 700; font-size: 2rem; color: #111; margin-bottom: 1.5rem; }
        .continue-link { font-weight: 600; text-decoration: none; color: var(--primary-blue); }
        .continue-link:hover { text-decoration: underline; }

        /* Modern Illustrative placeholders */
        .illus-frame {
            border-radius: 16px;
            overflow: hidden;
            border: var(--card-border);
            background: white;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .illus-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* .illus-placeholder {
            width: 100%; height: 100%;
            background: repeating-linear-gradient(45deg, #f1f5f9, #f1f5f9 10px, white 10px, white 20px);
        } */

        /* 3. Service Cards (top of image_2.png) */
        .services-grid { padding: 4rem 0; }
        .service-card {
            background: white;
            border: var(--card-border);
            border-radius: 12px;
            transition: all 0.3s ease;
            height: 100%;
            padding: 2rem;
            text-align: center;
        }

        .service-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }

        .service-icon {
            font-size: 2.2rem;
            color: var(--primary-blue);
            background: #eef2ff;
            width: 70px; height: 70px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
        }

        /* 4. Investment Plans (image_1.png / image_2.png) */
        .investment-plans { padding: 5rem 0; }
        .plan-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s ease;
            text-align: center;
        }

        .plan-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
            border-color: var(--accent-teal);
        }

        .plan-title { color: #111; font-size: 1.1rem; letter-spacing: 0.1em; font-weight: 700;}
        .roi-value { font-size: 3rem; font-weight: 700; color: var(--accent-teal); line-height: 1; }
        
        .feature-list li { margin-bottom: 0.75rem; font-size: 0.9rem; text-align: left;}

        /* Modernizing the rocket icon list from the screenshot */
        .modern-list { padding: 0; list-style: none;}
        .modern-list li {
            position: relative;
            padding-left: 28px;
            color: #64748b;
        }
        .modern-list li::before {
            content: "\f270"; /* Bootstrap Icon code */
            font-family: bootstrap-icons;
            position: absolute;
            left: 0; top: 2px;
            color: var(--accent-teal);
        }

        /* 5. Testimonials (image_3.png) */
        .testimonials { background: white; padding: 5rem 0; border-top: 1px solid #e2e8f0; }
        .test-card {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 2rem;
            background: #f8fafc;
            height: 100%;
        }

        /* 6. Contact & Footer (image_3.png) */
        .footer-section {
            background: var(--dark-bg);
            color: #94a3b8;
            padding: 5rem 0 2rem;
        }
        .footer-logo { font-weight: 700; color: white; font-size: 1.4rem; margin-bottom: 1rem; }
        .footer-link { text-decoration: none; color: #94a3b8; font-size: 0.9rem; }
        .footer-link:hover { color: var(--primary-blue); }

        /* Responsive */
        @media (max-width: 991px) { .hero-title { font-size: 2.5rem; } }
        @media (max-width: 767px) { .plan-card { padding: 1.5rem; } }

        /* Illustrations Section */
        .illus-img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
            border-radius: 20px;
        }

        /* Investment Plan Cards */
        .plan-slider .item { padding: 15px; }
        .plan-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
        }
        .plan-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05); }
        
        .roi-badge {
            background: #eef2ff;
            color: var(--primary);
            font-weight: 700;
            font-size: 2.5rem;
            display: inline-block;
            padding: 10px 20px;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        /* Review Cards */
        .review-slider .item { padding: 15px; }
        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border-left: 4px solid var(--primary);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            height: 100%;
        }
        .stars { color: #fbbf24; margin-bottom: 10px; }

        /* Custom Slick Dots */
        .slick-dots li button:before { color: var(--primary); font-size: 12px; }
        .slick-prev:before, .slick-next:before { color: var(--dark); }

        /* Section Headings */
        .section-title { font-weight: 800; letter-spacing: -1px; margin-bottom: 3rem; text-align: center; }

        /* FAQ Styling */
        .faq-section { padding: 5rem 0; background: var(--light-bg); }
        .accordion-item { border: var(--card-border); border-radius: 12px !important; margin-bottom: 1rem; overflow: hidden; }
        .accordion-button:not(.collapsed) { background-color: #eef2ff; color: var(--primary-blue); box-shadow: none; }
        .accordion-button:focus { box-shadow: none; }

        /* Floating Contact & Telegram */
        .floating-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .float-btn:hover { transform: scale(1.1); color: white; }
        .bg-telegram { background: #0088cc; }
        .bg-contact { background: var(--primary-blue); cursor: pointer; }

        .contact-menu {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: white;
            border: var(--card-border);
            border-radius: 12px;
            padding: 10px;
            width: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: none;
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }


        /* Hero Header */
        .legal-hero-au {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                        url('../img/about-us.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0 60px;
            color: white;
            text-align: center;
        }

        .legal-hero-sv {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                        url('../img/services.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0 60px;
            color: white;
            text-align: center;
        }

        .legal-hero-tos {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2000');
            background-size: cover;
            background-position: center;
            padding: 100px 0 60px;
            color: white;
            text-align: center;
        }

        /* Sidebar Navigation */
        .toc-wrapper {
            position: sticky;
            top: 100px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            border: 1px solid var(--slate-200);
        }

        .toc-link {
            display: block;
            padding: 8px 0;
            color: var(--slate-600);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
            border-bottom: 1px solid transparent;
        }

        .toc-link:hover, .toc-link.active {
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* Content Styling */
        .legal-content-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid var(--slate-200);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }

        .legal-section {
            margin-bottom: 3rem;
            scroll-margin-top: 120px; /* Ensures header doesn't hide text when jumping */
        }

        .legal-section h3 {
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: #1e293b;
            display: flex;
            align-items: center;
        }

        .legal-section h3 span {
            color: var(--primary-blue);
            margin-right: 12px;
            font-size: 1.5rem;
        }

        .plain-english-note {
            background: #f0f9ff;
            border-left: 4px solid var(--primary-blue);
            padding: 15px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #0369a1;
            border-radius: 0 8px 8px 0;
        }

        .auth-wrapper {
            display: flex;
            height: 100vh;
        }

        /* Side Branding (Left) */
        .auth-side-brand {
            flex: 1;
            background: linear-gradient(135deg, var(--dark-navy) 0%, #1e293b 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px;
            color: white;
        }

        .brand-logo {
            font-weight: 700;
            font-size: 1.5rem;
            position: absolute;
            top: 40px;
            left: 40px;
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
        }

        /* Form Area (Right) */
        .auth-form-area {
            width: 550px;
            background: white;
            /* display: flex; */
            flex-direction: column;
            justify-content: center;
            padding: 60px;
            overflow-y: auto;
        }

        .auth-header h2 { font-weight: 700; color: var(--dark-navy); margin-bottom: 8px; }
        .auth-header p { color: #64748b; margin-bottom: 32px; }

        /* Modern Inputs */
        .form-label { font-weight: 500; font-size: 0.875rem; color: #475569; }
        .form-control {
            background-color: var(--input-bg);
            border: 1px solid #e2e8f0;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
        }

        .form-control:focus {
            background-color: #fff;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
        }

        /* Buttons & Interactions */
        .btn-auth {
            padding: 12px;
            font-weight: 600;
            border-radius: 8px;
            background-color: var(--custom-blue);
            border: none;
            margin-top: 10px;
            transition: all 0.2s;
        }

        .btn-auth:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2); }

        /* Captcha Styling */
        .captcha-box {
            background: #f1f5f9;
            border-radius: 8px;
            padding: 10px;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 4px;
            text-align: center;
            color: var(--dark-navy);
            border: 1px dashed #cbd5e1;
        }

        .auth-footer-link {
            text-align: center;
            margin-top: 24px;
            font-size: 0.9rem;
            color: #64748b;
        }

        .auth-footer-link a { color: var(--primary-blue); text-decoration: none; font-weight: 600; }

        @media (max-width: 992px) {
            .auth-side-brand { display: none; }
            .auth-form-area { width: 100%; padding: 30px; }
        }

        /* Password Toggle Styling */
        .password-field-container {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #64748b;
            transition: color 0.2s;
            z-index: 10;
        }

        .toggle-password:hover {
            color: var(--primary-blue);
        }
.logo-icon {
    width: 35px;
    height: 35px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
}

.plan-card img {
    width: 32.33px;
    height: 32.32px;
    display: block;
    margin: 0 auto;
}

.verify-card { text-align: center; }

.icon-box { 
    width: 80px; height: 80px; background: #eef2ff; color: var(--primary); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 2.5rem; margin: 0 auto 25px; 
}

.deletion-icon { 
            width: 80px; height: 80px; background: #fef2f2; color: var(--danger); 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; 
            font-size: 2.5rem; margin: 0 auto 25px; 
        }

        .warning-box {
            background: #fff1f2;
            border-radius: 12px;
            padding: 20px;
            text-align: left;
            margin-bottom: 30px;
            border: 1px solid #fecaca;
        }

        .form-label { font-weight: 700; font-size: 0.85rem; color: #475569; text-transform: uppercase; letter-spacing: 0.5px; }
        .form-control { background-color: var(--input-bg); border: 1px solid #e2e8f0; padding: 14px; border-radius: 12px; }

        .btn-delete {
            background: var(--danger); color: white; border: none; padding: 16px;
            border-radius: 12px; font-weight: 700; transition: 0.3s; margin-top: 10px;
        }
        .btn-delete:hover { background: #b91c1c; color: #fff; transform: translateY(-1px); box-shadow: 0 10px 15px rgba(239, 68, 68, 0.2); }


        