        :root {
            --black: #1a1a1a;
            --dark-grey: #2d2d2d;
            --grey: #4a4a4a;
            --light-grey: #e0e0e0;
            --earth: #8c7a6b;
            --earth-light: #c4b6a9;
            --accent: #d4af37;
            --white: #ffffff;
            --success: #4caf50;
            --error: #ff5252;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        html, body {
            height: 100%;
        }
        
        body {
            background-color: #f8f8f8;
            color: var(--dark-grey);
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--black);
            color: var(--white);
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
            cursor: pointer;
        }
        
        .logo::after {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            border: 2px solid var(--accent);
            border-radius: 50%;
            top: 8px;
            right: -15px;
        }
        
        .logo::before {
            content: "";
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--accent);
            top: 50%;
            right: -45px;
            transform: translateY(-50%);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        nav a:hover {
            color: var(--accent);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .nav-icons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        
        .cart-icon {
            position: relative;
            cursor: pointer;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent);
            color: var(--black);
            font-size: 0.65rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            border: 2px solid var(--black);
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .nav-icons i {
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .nav-icons i:hover {
            color: var(--accent);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Main Content */
        .main-content {
            flex: 1;
        }
        
        /* Support Center Styles */
        .support-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 5%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--black);
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .support-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .support-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .card-header {
            background: var(--black);
            color: var(--white);
            padding: 1.5rem;
            text-align: center;
        }
        
        .card-header i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        
        .card-header h3 {
            font-size: 1.5rem;
        }
        
        .card-content {
            padding: 1.5rem;
            flex-grow: 1;
        }
        
        .card-content ul {
            list-style: none;
            margin-top: 1rem;
        }
        
        .card-content li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .card-content li:before {
            content: "•";
            color: var(--accent);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        
        .card-content a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .card-content a:hover {
            color: var(--black);
            text-decoration: underline;
        }
        
        .card-cta {
            padding: 1rem 1.5rem;
            background: var(--light-grey);
            text-align: center;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--accent);
            color: var(--black);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }
        
        .btn:hover {
            background-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--black);
        }
        
        .btn-outline:hover {
            background: var(--accent);
        }
        
        /* Content Pages */
        .content-page {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 5%;
        }
        
        .content-section {
            background: var(--white);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        
        .content-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--black);
            position: relative;
            display: inline-block;
        }
        
        .content-section h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        
        .content-section p {
            margin-bottom: 1.2rem;
            line-height: 1.6;
            color: var(--grey);
        }
        
        .content-section ul {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }
        
        .content-section li {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: var(--grey);
        }
        
        .content-section table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #f9f9f9;
        }
        
        .content-section th, 
        .content-section td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--light-grey);
        }
        
        .content-section th {
            background: var(--black);
            color: var(--white);
            font-weight: 500;
        }
        
        .content-section tr:nth-child(even) {
            background: #f2f2f2;
        }
        
        .back-link {
            display: inline-block;
            margin-top: 1.5rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .back-link i {
            margin-right: 8px;
        }
        
        .back-link:hover {
            color: var(--black);
            transform: translateX(-5px);
        }
        
        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 1.5rem 5%;
            text-align: center;
            margin-top: auto;
        }
        
        .copyright {
            color: var(--light-grey);
            font-size: 0.9rem;
        }
        
        /* Contact Icons */
        .contact-icons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--black);
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .contact-icon:hover {
            transform: translateY(-5px);
            background: var(--white);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        .contact-icon.whatsapp {
            background: #25D366;
            color: white;
        }
        
        .contact-icon.email {
            background: #D44638;
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                right: -100%;
                background: var(--black);
                width: 80%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.3s;
                z-index: 99;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .nav-icons {
                display: none;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .contact-icons {
                bottom: 20px;
                right: 20px;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }