        /* --- 1. VARIABLES & RESET --- */
        :root {
            --primary-skyblue: #74b2ff; 
            --primary-darkblue: #6495ED; 

            --dark-bg: #0a0a0a;       
            --card-bg: #111111;      
            --text-white: #ffffff;
            --text-gray: #a3a3a3;
            --border-color: #333;
        }
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--text-white);
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
/* 1. The Main Header Container */
.navbar {
    display: flex;            
    align-items: center;      
    justify-content: space-between; 
    padding: 0px 20px;         
    background-color: #000000; 
    
}
html {
    scroll-behavior: smooth;
}

/* 2. The Logo Image */
.site-logo {
    height: auto;            
    width: 120px;             
    object-fit:cover;     
    padding-top: 5px;
    
}

/* 3. Responsive Tweak (Mobile) */
@media (max-width: 768px) {
    .site-logo {
        height: 100px; /* Smaller logo on mobile screens */
    }
}
        /* --- BUTTONS --- */
        .btn-orange {
            background-color: var(--primary-darkblue);
            color: var(--text-white);
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: bold;
            display: inline-block;
            border: none;
            cursor: pointer;
        }
        .btn-orange:hover { background-color:  #1E90FF; }

        .btn-outline {
            border: 1px solid var(--text-white);
            background: transparent;
            color: var(--text-white);
            padding: 8px 20px;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        .btn-outline:hover {
            background: var(--text-white);
            color: var(--dark-bg);
        }

        /* --- 2. HEADER --- */
        header {
            background-color: var(--dark-bg);
            padding: 20px 0;
            border-bottom: 1px solid #222;
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i { color: var(--primary-darkblue); }

        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a { font-size: 1rem; font-weight: 500; }
        .nav-links a:hover { color: var(--primary-darkblue); }

        /* --- 3. HERO SECTION --- */
        .hero {
            padding: 80px 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--primary-darkblue);
        }
        
        .hero-text span { color: var(--text-white); } /* "Powered by Performance" part */

        .hero-text p {
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-img img {
            width: 100%;
            border-radius: 4px;
            border: 1px solid #333;
        }

        /* --- 4. SPECIALTIES (3 Boxes) --- */
        .specialties {
            padding: 80px 0;
            text-align: center;
        }

        .section-title {
            color: var(--primary-darkblue);
            font-size: 1.8rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 800;
        }

        .section-subtitle {
            color: var(--text-gray);
            margin-bottom: 50px;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .spec-card {
            border: 1px solid var(--border-color);
            padding: 40px 20px;
            transition: 0.3s;
        }

        .spec-card:hover { border-color: var(--primary-skyblue); }

        .icon-circle {
            width: 60px;
            height: 60px;
            border: 2px solid var(--primary-skyblue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-skyblue);
            font-size: 1.5rem;
        }

        .spec-card h3 { margin-bottom: 15px; color: var(--primary-skyblue); }
        .spec-card p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 25px; }

        /* --- 5. OUR STORY --- */
        .story {
            padding: 80px 0;
        }
        
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .story-content h2 {
            color: var(--primary-skyblue);
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        .story-list-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .story-list-item i {
            color: var(--primary-skyblue);
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .story-list-item h4 { color: var(--primary-skyblue); margin-bottom: 5px; }
        .story-list-item p { color: var(--text-gray); font-size: 0.9rem; }

        .story-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }

        /* --- 6. WHY CHOOSE US (6 Grid) --- */
        .why-choose {
            padding: 80px 0;
            text-align: center;
        }

        .grid-6 {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 columns matches image */
            gap: 30px;
            margin-top: 40px;
        }

        .feature-box {
            border: 1px solid var(--border-color);
            padding: 30px;
            text-align: center;
        }
        
        .feature-box h4 { color: var(--primary-skyblue); margin: 15px 0 10px; }
        .feature-box p { color: var(--text-gray); font-size: 0.85rem; }

        /* --- 7. SPECIFIC PART CTA --- */
        .specific-part {
            text-align: center;
            padding: 60px 0;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
        }
        .specific-part h2 { color: var(--primary-skyblue); margin-bottom: 10px; }
        .specific-part p { color: var(--text-gray); margin-bottom: 30px; }

        /* --- 8. FOOTER / CONTACT --- */
        footer {
            padding: 80px 0;
            background: #000;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1.5fr; 
            gap: 50px;
        }

       /* --- 9. FEATURED PRODUCTS --- */
    .featured-products {
        padding: 80px 0;
        text-align: center;
    }

    .collection-btn {
        color: var(--primary-darkblue);
        font-size: 0.9rem;
        font-weight: bold;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 15px;
    }

    .featured-products h2 {
        color: var(--primary-darkblue);
        font-size: 2rem;
        text-transform: uppercase;
        margin-bottom: 50px;
        font-weight: 800;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .product-card {
        border: 1px solid var(--border-color);
        padding: 20px;
        transition: 0.3s;
        text-align: left;
    }

    .product-card:hover {
        border-color: var(--primary-skyblue);
        transform: translateY(-5px);
    }

    .product-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 15px;
    }

    .product-title {
        color: var(--text-white);
        font-weight: bold;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .product-category {
        color: var(--text-gray);
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .product-price {
        color: var(--primary-skyblue);
        font-size: 1.3rem;
        font-weight: bold;
    }

        .contact-box {
            background-color: var(--primary-darkblue);
            color: var(--text-white);
            padding: 40px;
            border-radius: 8px;
        }

        .contact-box h3 { font-size: 1.5rem; margin-bottom: 10px; }
        .contact-box p { font-size: 0.9rem; margin-bottom: 30px; opacity: 0.9; }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: center;
        }
        .contact-icon {
            background: #000;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
        }

        /* Quick Links */
        .footer-links h3 { margin-bottom: 20px; font-size: 1.2rem; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: var(--text-gray); font-size: 0.9rem; }
        .footer-links a:hover { color: var(--text-white); }

        /* 1. Main Footer Container */
.policy-footer {
    background-color: #050505; 
    padding: 50px 20px;
    border-top: 3px solid #1a2f4d; 
    font-family: 'Arial', sans-serif; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 2. The Brand Title (Optional) */
.footer-brand span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0.5; /* Kept subtle so links stand out more */
    display: block;
    margin-bottom: 30px;
}

/* 3. The Links Container (Flexbox) */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 30px; 
}

/* 4. The Individual Links */
.footer-links li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #b0c4de; 
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}


/* Effect A: Color & Glow */
.footer-links li a:hover {
    color: #42a5f5; /* Bright Light Blue */
    text-shadow: 0px 0px 8px rgba(66, 165, 245, 0.6); /* Neon Glow */
    transform: translateY(-3px); /* Slightly floats up */
}

/* Effect B: Expanding Underline Animation */
.footer-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #42a5f5; /* Light Blue Line */
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%); /* Keeps it centered */
}

.footer-links li a:hover::after {
    width: 100%; /* Expands to full width on hover */
}

/* 6. Copyright Text */
.footer-copy {
    margin-top: 40px;
    font-size: 12px;
    color: #555;
}

/* 7. Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column; /* Stack vertically on phones */
        gap: 20px;
    }
}

        .copyright {
            text-align: center;
            color: var(--text-gray);
            font-size: 0.8rem;
            margin-top: 60px;
        }

                    .logo-slider {
                        padding: 80px 0;
                        background: var(--card-bg);
                        border-top: 1px solid var(--border-color);
                        border-bottom: 1px solid var(--border-color);
                    }
                    
                    .slider-wrapper {
                        overflow: hidden;
                        margin-top: 50px;
                    }
                    
                    .slider-track {
                        display: flex;
                        gap: 40px;
                        animation: scroll 10s linear infinite;
                    }
                    
                    .slider-item {
                        flex: 0 0 180px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background: var(--dark-bg);
                        border: 1px solid var(--border-color);
                        border-radius: 8px;
                        padding: 20px;
                        min-height: 120px;
                    }
                    
                    .slider-item img {
                        max-width: 100%;
                        height: auto;
                        opacity: 0.7;
                        transition: opacity 0.5s;
                    }
                    
                    .slider-item:hover img {
                        opacity: 1;
                    }
                    
                    @keyframes scroll {
                        0% { transform: translateX(0); }
                        100% { transform: translateX(calc(-250px * 8 - 60px * 8)); }
                    }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-grid, .story-grid, .footer-grid { grid-template-columns: 1fr; }
            .grid-6 { grid-template-columns: 1fr; } 
            .nav-links { display: none; } 
        }

/* warranty and policy */
/* --- Main Container & Typography --- */
.warranty-container {
    
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    background-color: #050505; /* Deep dark background */
}

/* Header Styling */
.header-section {
    text-align: center;
    margin-bottom: 50px;
}

.header-section h2 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 15px rgba(66, 165, 245, 0.5); /* Blue Glow */
}

.subtitle {
    color: #42a5f5; /* Light Blue */
    font-size: 1.2rem;
    font-weight: 300;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b0c4de;
}

/* --- The Grid Layout --- */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

/* --- The Creative Cards --- */
.policy-card {
    background: #0f1216; /* Slightly lighter than body bg */
    border: 1px solid #1f293a;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover Effect: Lift up + Neon Border Glow */
.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #42a5f5;
}

/* The "Number" Watermark in the corner */
.card-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(66, 165, 245, 0.05); /* Very faint blue number */
    z-index: 0;
    transition: all 0.4s ease;
}

.policy-card:hover .card-icon {
    color: rgba(66, 165, 245, 0.15); /* Becomes visible on hover */
    transform: scale(1.1);
}

/* Card Titles */
.policy-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid #42a5f5;
    display: inline-block;
    padding-bottom: 5px;
}

/* --- Lists Styling --- */
.styled-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.styled-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    color: #cfd8dc;
}

/* Custom Blue Checkmarks */
.styled-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #42a5f5;
    font-weight: bold;
}

/* Custom Red X for Exclusions */
.cross-list li::before {
    content: '✖';
    color: #ef5350; /* Red for warnings */
}

.note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr; /* Stack cards on phone */
    }
    .header-section h2 {
        font-size: 2rem;
    }
}


/* return & refund */
/* --- Main Container --- */
.return-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    background-color: #050505;
}

/* Header Styling */
.header-section {
    text-align: center;
    margin-bottom: 50px;
}
.header-section h2 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 15px rgba(66, 165, 245, 0.5); /* Blue Glow */
}
.subtitle {
    color: #42a5f5; /* Light Blue */
    font-size: 1.2rem;
    font-weight: 300;
}
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b0c4de;
}

/* --- Grid System --- */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

/* --- Card Design --- */
.policy-card {
    background: #0f1216;
    border: 1px solid #1f293a;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #42a5f5;
}

/* Watermark Number */
.card-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(66, 165, 245, 0.05);
    z-index: 0;
    transition: all 0.4s ease;
}
.policy-card:hover .card-icon {
    color: rgba(66, 165, 245, 0.15);
    transform: scale(1.1);
}

/* Typography inside Card */
.policy-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid #42a5f5;
    display: inline-block;
    padding-bottom: 5px;
}
.policy-card p {
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* --- Lists --- */
.styled-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}
.styled-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    color: #cfd8dc;
}
.styled-list li strong {
    color: #fff;
}
/* Blue Checkmark */
.styled-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #42a5f5;
    font-weight: bold;
}
/* Red Cross for Exclusions */
.cross-list li::before {
    content: '✖';
    color: #ef5350;
}

/* --- NEW ADDITIONS (Specific to Refund Page) --- */

/* 1. Full Width Card for Important Policy */
.full-width-card {
    grid-column: 1 / -1; /* Spans entire width */
    border-left: 5px solid #ef5350; /* Red border to indicate warning */
}

/* 2. Footer Contact Note */
.footer-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: rgba(66, 165, 245, 0.05);
    border-radius: 8px;
    border: 1px dashed #1f293a;
}
.footer-note a {
    color: #42a5f5;
    text-decoration: none;
    font-weight: bold;
}
.footer-note a:hover {
    text-decoration: underline;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    .header-section h2 {
        font-size: 2rem;
    }
}

/* terms and conditions */
/* --- Main Container --- */
.terms-container {
    max-width: 1200px; /* Slightly wider for terms */
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    background-color: #050505;
}

/* Header */
.header-section {
    text-align: center;
    margin-bottom: 50px;
}
.header-section h2 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 15px rgba(66, 165, 245, 0.5);
}
.subtitle {
    color: #42a5f5;
    font-size: 1.2rem;
    font-weight: 300;
}
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b0c4de;
}

/* --- Grid System --- */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* --- Card Styles --- */
.terms-card {
    background: #0f1216;
    border: 1px solid #1f293a;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #42a5f5;
}

/* Highlight Card (For Warranty Section) */
.highlight-card {
    border: 1px solid #42a5f5; /* Blue border by default */
    background: linear-gradient(145deg, #0f1216 0%, #0a1525 100%);
}

/* Watermark Number */
.card-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(66, 165, 245, 0.05);
    z-index: 0;
    transition: all 0.4s ease;
}
.terms-card:hover .card-icon {
    color: rgba(66, 165, 245, 0.15);
    transform: scale(1.1);
}

/* Typography */
.terms-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid #42a5f5;
    display: inline-block;
    padding-bottom: 5px;
}
.terms-card p, .terms-card h4 {
    position: relative;
    z-index: 1;
    color: #cfd8dc;
}

/* --- Lists --- */
.styled-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}
.styled-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    line-height: 1.5;
    color: #cfd8dc;
    position: relative;
}
/* Tiny blue dot for bullets */
.styled-list li::before {
    content: '•';
    color: #42a5f5;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}
/* Cross list for "Warning" card */
.cross-list li::before {
    content: '✖';
    color: #ef5350; /* Red */
    font-size: 1rem;
    top: 0;
}

/* --- Specific Layout for Legal Section --- */
.full-width-card {
    grid-column: 1 / -1;
}
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}
.legal-grid h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.legal-grid p {
    font-size: 0.9rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    .header-section h2 {
        font-size: 2rem;
    }
}

/* shipping policy */
/* --- Main Container --- */
.shipping-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    background-color: #050505;
}

/* Header Styling */
.header-section {
    text-align: center;
    margin-bottom: 50px;
}
.header-section h2 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 15px rgba(66, 165, 245, 0.5); /* Blue Glow */
}
.subtitle {
    color: #42a5f5;
    font-size: 1.2rem;
    font-weight: 300;
}
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b0c4de;
}

/* --- Grid System --- */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

/* --- Card Design --- */
.policy-card {
    background: #0f1216;
    border: 1px solid #1f293a;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #42a5f5;
}

/* Watermark Number */
.card-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(66, 165, 245, 0.05);
    z-index: 0;
    transition: all 0.4s ease;
}
.policy-card:hover .card-icon {
    color: rgba(66, 165, 245, 0.15);
    transform: scale(1.1);
}

/* Typography inside Card */
.policy-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid #42a5f5;
    display: inline-block;
    padding-bottom: 5px;
}
.policy-card p {
    position: relative;
    z-index: 1;
    line-height: 1.6;
    color: #cfd8dc;
}
.note a {
    color: #42a5f5;
    text-decoration: none;
    font-weight: bold;
}

/* --- Lists --- */
.styled-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}
.styled-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    color: #cfd8dc;
}
.styled-list li strong {
    color: #fff;
}
/* Blue Arrow/Checkmark */
.styled-list li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: #42a5f5;
    font-size: 0.8rem;
    top: 3px;
}

/* --- Specific Layout for "Liabilities" Section --- */
.full-width-card {
    grid-column: 1 / -1;
    border-left: 4px solid #ef5350; /* Red border for emphasis */
}
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}
.legal-grid h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #ef5350; /* Red titles for warnings */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    .header-section h2 {
        font-size: 2rem;
    }
}

/* privacy policy */
/* --- Main Container --- */
.privacy-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    background-color: #050505;
}

/* Header Styling */
.header-section {
    text-align: center;
    margin-bottom: 50px;
}
.header-section h2 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 15px rgba(66, 165, 245, 0.5); /* Blue Glow */
}
.subtitle {
    color: #42a5f5;
    font-size: 1.2rem;
    font-weight: 300;
}
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b0c4de;
}

/* --- Grid System --- */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

/* --- Card Design --- */
.policy-card {
    background: #0f1216;
    border: 1px solid #1f293a;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #42a5f5;
}

/* Highlight Card (For the "No Sell" Promise) */
.highlight-card {
    border: 1px solid #42a5f5;
    background: linear-gradient(145deg, #0f1216 0%, #0a1525 100%);
}

/* Watermark Icon */
.card-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(66, 165, 245, 0.05);
    z-index: 0;
    transition: all 0.4s ease;
}
.policy-card:hover .card-icon {
    color: rgba(66, 165, 245, 0.15);
    transform: scale(1.1);
}

/* Typography inside Card */
.policy-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid #42a5f5;
    display: inline-block;
    padding-bottom: 5px;
}
.policy-card p {
    position: relative;
    z-index: 1;
    line-height: 1.6;
    color: #cfd8dc;
}

/* --- Lists --- */
.styled-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}
.styled-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
    color: #cfd8dc;
}
.styled-list li strong {
    color: #fff;
}
/* Blue Arrow Bullet */
.styled-list li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: #42a5f5;
    font-size: 0.8rem;
    top: 3px;
}

/* --- Specific Layout for Footer Info --- */
.full-width-card {
    grid-column: 1 / -1;
}
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}
.legal-grid h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #42a5f5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    .header-section h2 {
        font-size: 2rem;
    }
}