* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #1a5f1a;
            --dark-green: #0d3320;
            --light-green: #90EE90;
            --bright-green: #4CAF50;
            --accent-orange: #FF6B35;
            --text-dark: #1a1a2e;
            --text-gray: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
        }

        body {
            font-family: "Space Grotesk", sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

             /* Navigation */
        .navbar {
            background: var(--white);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-green);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .nav-icons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-icons i {
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .btn-explore {
            background: var(--bright-green);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-explore:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }
        .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-green);
        transition: color 0.3s;
        }

        .menu-toggle:hover {
            color: var(--bright-green);
        }


        /* Page Header */
        .page-header {
            margin-top: 80px;
            background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
            color: var(--white);
            padding: 5rem 5% 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.1s forwards;
        }

        /* Section Styling */
        section {
            padding: 5rem 5%;
        }

        .section-label {
            display: inline-block;
            background: var(--bg-light);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            line-height: 1.2;
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Contact Info Cards */
        .contact-info {
            background: var(--white);
            border-radius: 30px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid #eef2f0;
        }

        .info-card {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1rem;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .info-card:hover {
            background: var(--bg-light);
            transform: translateX(5px);
        }

        .info-icon {
            width: 55px;
            height: 55px;
            background: #e8f5e9;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--bright-green);
            flex-shrink: 0;
        }

        .info-details h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .info-details p, .info-details a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
            line-height: 1.5;
        }

        .info-details a:hover {
            color: var(--bright-green);
        }

        .office-hours {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e0e0e0;
        }

        .office-hours h4 {
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .office-hours p {
            color: var(--text-gray);
            margin-bottom: 0.5rem;
        }

        .social-connect {
            margin-top: 2rem;
        }

        .social-connect h4 {
            margin-bottom: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background: var(--bright-green);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Contact Form */
        .contact-form-container {
            background: var(--white);
            border-radius: 30px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid #eef2f0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
            background: var(--white);
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--bright-green);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background: var(--bright-green);
            color: var(--white);
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-family: inherit;
        }

        .btn-submit:hover {
            background: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        /* Map Section */
        .map-section {
            background: var(--bg-light);
            padding: 0;
        }

        .map-container {
            width: 100%;
            height: 450px;
            background: #e0e0e0;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--dark-green);
        }

        .map-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.7;
        }

        .map-placeholder p {
            font-size: 1.1rem;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--white);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .faq-item {
            background: var(--bg-light);
            padding: 1.8rem;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        .faq-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--primary-green);
        }

        .faq-item p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%);
            text-align: center;
            padding: 4rem 5%;
            border-radius: 30px;
            margin: 2rem 5%;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .btn-start-trading {
            background: var(--text-dark);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-start-trading:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Footer */
        footer {
            background: var(--dark-green);
            color: var(--white);
            padding: 4rem 5% 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-brand p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--bright-green);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-column ul li a:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--white);
            text-decoration: none;
            margin-left: 1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Success Message */
        .success-message {
            background: #e8f5e9;
            color: var(--primary-green);
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            text-align: center;
            display: none;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .page-header h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
        .navbar {
            padding: 1rem 4%;
        }

        

        .menu-toggle {
            display: block;
            order: 2;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--white);
            flex-direction: column;
            gap: 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            z-index: 999;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            padding: 1rem 5%;
            border-bottom: 1px solid #e0e0e0;
        }

        .btn-explore {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
    }