  
        :root {
            --primary: #FFA500;  /* Orange */
            --primary-dark: #FF8C00;
            --secondary: #FFD700; /* Gold */
            --dark: #121212;
            --darker: #0A0A0A;
            --light: #1E1E1E;
            --lighter: #2A2A2A;
            --text: #E0E0E0;
            --text-light: #A0A0A0;
            --danger: #FF3D00;
            --success: #00C853;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--darker);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .logo h1 {
            color: var(--secondary);
            font-size: 24px;
            font-weight: 700;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .auth-buttons .btn {
            margin-left: 15px;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-login {
            color: var(--secondary);
            border: 1px solid var(--secondary);
        }
        
        .btn-login:hover {
            background-color: rgba(255, 215, 0, 0.1);
        }
        
        .btn-signup {
            background-color: var(--primary);
            color: var(--darker);
            font-weight: 600;
        }
        
        .btn-signup:hover {
            background-color: var(--primary-dark);
            box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 80px;
            background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), 
                        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .hero h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--text);
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero h2 span {
            color: var(--secondary);
        }
        
        .hero p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .cta-buttons {
            margin-top: 30px;
        }
        
        .cta-buttons .btn {
            padding: 12px 30px;
            margin: 0 10px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--darker);
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
        }
        
        .btn-outline {
            border: 1px solid var(--secondary);
            color: var(--secondary);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 215, 0, 0.1);
            transform: translateY(-2px);
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--dark);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h3 {
            font-size: 32px;
            color: var(--text);
            margin-bottom: 15px;
        }
        
        .section-title h3 span {
            color: var(--secondary);
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: var(--light);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .feature-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }
        
        .feature-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .feature-card p {
            color: var(--text-light);
        }
        
        /* Market Data Section */
        .market-data {
            padding: 60px 0;
            background-color: var(--darker);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .market-tickers {
            display: flex;
            overflow-x: auto;
            padding: 20px 0;
            background-color: var(--light);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .ticker {
            display: flex;
            align-items: center;
            padding: 0 20px;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .ticker:last-child {
            border-right: none;
        }
        
        .ticker-icon {
            margin-right: 10px;
            font-size: 20px;
            color: var(--secondary);
        }
        
        .ticker-info h5 {
            font-size: 14px;
            color: var(--text-light);
        }
        
        .ticker-price {
            font-weight: 600;
        }
        
        .price-up {
            color: var(--success);
        }
        
        .price-down {
            color: var(--danger);
        }
        
        /* Platform Section */
        .platform {
            padding: 80px 0;
            background-color: var(--dark);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .platform-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-top: 50px;
        }
        
        .platform-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .platform-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .platform-features {
            flex: 1;
        }
        
        .platform-feature-item {
            margin-bottom: 30px;
            padding: 20px;
            background-color: var(--light);
            border-radius: 8px;
            border-left: 3px solid var(--primary);
        }
        
        .platform-feature-item h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--text);
        }
        
        .platform-feature-item p {
            color: var(--text-light);
        }
        
        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background-color: var(--darker);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background-color: var(--light);
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .pricing-card.popular {
            border-top: 4px solid var(--primary);
            position: relative;
            transform: scale(1.05);
            background-color: var(--lighter);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background-color: var(--primary);
            color: var(--darker);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .pricing-card h4 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--text);
        }
        
        .price {
            font-size: 42px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 20px;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
        }
        
        .price span {
            font-size: 16px;
            color: var(--text-light);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-light);
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: var(--dark);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background-color: var(--light);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--text);
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text:before {
            content: '"';
            font-size: 60px;
            color: rgba(255, 215, 0, 0.1);
            position: absolute;
            left: -15px;
            top: -20px;
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid rgba(255, 215, 0, 0.3);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h5 {
            font-size: 16px;
            color: var(--text);
        }
        
        .author-info p {
            font-size: 14px;
            color: var(--text-light);
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--darker) 0%, #1a1200 100%);
            color: white;
            text-align: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .cta h3 {
            font-size: 36px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .cta h3 span {
            color: var(--secondary);
        }
        
        .cta p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            position: relative;
        }
        
        /* Footer */
        footer {
            background-color: var(--darker);
            color: white;
            padding: 60px 0 20px;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: var(--text-light);
            font-size: 20px;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h2 {
                font-size: 32px;
            }
            
            .platform-content {
                flex-direction: column;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .cta-buttons .btn {
                display: block;
                margin: 10px auto;
                max-width: 200px;
            }
        }


            /* Hero Section */
        .about-hero {
            padding: 180px 0 80px;
            background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), 
                        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .about-hero h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--text);
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        .about-hero h2 span {
            color: var(--secondary);
        }
        
        .about-hero p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        /* About Content */
        .about-content {
            padding: 80px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h3 {
            font-size: 32px;
            color: var(--text);
            margin-bottom: 15px;
        }
        
        .section-title h3 span {
            color: var(--secondary);
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-mission {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }
        
        .mission-content {
            flex: 1;
        }
        
        .mission-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .mission-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-mission h4 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--text);
        }
        
        .about-mission p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .value-card {
            background-color: var(--light);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            border: 1px solid rgba(255, 215, 0, 0.05);
            text-align: center;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .value-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }
        
        .value-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .value-card p {
            color: var(--text-light);
        }
        
        /* Team Section */
        .team {
            padding: 80px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-member {
            background-color: var(--light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .member-image {
            height: 250px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 20px;
            text-align: center;
        }
        
        .member-info h4 {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--text);
        }
        
        .member-info p {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .member-info .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .member-info .social-links a {
            color: var(--text-light);
            font-size: 18px;
            transition: all 0.3s;
        }
        
        .member-info .social-links a:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--darker) 0%, #1a1200 100%);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .stats:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .stat-item {
            position: relative;
            z-index: 1;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 16px;
            color: var(--text-light);
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            background-color: var(--dark);
            text-align: center;
        }
        
        .cta h3 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta h3 span {
            color: var(--secondary);
        }
        
        .cta p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--text-light);
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--darker);
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
        }


          /* Responsive Styles */
        @media (max-width: 768px) {
         
            .about-hero h2 {
                font-size: 32px;
            }
            
            .about-mission {
                flex-direction: column;
            }
            
            .mission-image {
                order: -1;
                margin-bottom: 30px;
            }
        }
    

            /* Hero Section */
        .contact-hero {
            padding: 150px 0 80px;
            background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), 
                        url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .contact-hero h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--text);
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        .contact-hero h2 span {
            color: var(--secondary);
        }
        
        .contact-hero p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        /* Contact Content */
        .contact-content {
            padding: 80px 0;
            background-color: var(--dark);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info {
            background-color: var(--light);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-info h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .contact-method {
            display: flex;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--secondary);
            font-size: 20px;
        }
        
        .contact-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--text);
        }
        
        .contact-details p, 
        .contact-details a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-details a:hover {
            color: var(--secondary);
        }
        
        /* Contact Form */
        .contact-form {
            background-color: var(--light);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .contact-form h3 {
            font-size: 24px;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-form h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--darker);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: var(--text);
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-submit {
            background-color: var(--primary);
            color: var(--darker);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            background-color: var(--primary-dark);
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
        }
        
        /* Office Locations */
        .office-locations {
            padding: 60px 0;
            background-color: var(--darker);
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h3 {
            font-size: 32px;
            color: var(--text);
            margin-bottom: 15px;
        }
        
        .section-title h3 span {
            color: var(--secondary);
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .location-card {
            background-color: var(--light);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .location-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .location-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .location-card p {
            color: var(--text-light);
            margin-bottom: 10px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--dark);
        }
        
        .faq-item {
            background-color: var(--light);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--lighter);
            color: var(--text);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 215, 0, 0.05);
        }
        
        .faq-question i {
            color: var(--secondary);
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .faq-answer p {
            padding: 20px 0;
            color: var(--text-light);
        }
        
        .faq-item.active .faq-question {
            background-color: rgba(255, 215, 0, 0.1);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }


           /* Responsive Styles */
        @media (max-width: 768px) {
          
            
            .contact-hero h2 {
                font-size: 32px;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }