* {
            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: 70px;
            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;
            opacity: 0;
            animation-fill-mode: 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;
        }

        .section-subtitle {
            color: var(--text-gray);
            max-width: 700px;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        /* Mission & Vision Grid */
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .mission-card, .vision-card {
            background: var(--white);
            border-radius: 30px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #eef2f0;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 50px rgba(0,0,0,0.1);
        }

        .mission-icon, .vision-icon {
            width: 70px;
            height: 70px;
            background: #e8f5e9;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--primary-green);
        }

        .mission-card h3, .vision-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .mission-card p, .vision-card p {
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Story Section */
        .story-section {
            background: var(--bg-light);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .story-content p {
            margin-bottom: 1.5rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .story-image {
            background: url(../img/vision.png) no-repeat center center;
            height: 100%;
            background-size: cover;
            border-radius: 30px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .story-image i {
            font-size: 8rem;
            color: var(--dark-green);
            opacity: 0.8;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .float-item {
            position: absolute;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            animation: float 8s infinite;
        }

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid #eef2f0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.02);
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-color: var(--light-green);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: #e8f5e9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--bright-green);
        }

        .value-card h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .value-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Leadership Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .team-member {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s;
            text-align: center;
        }

        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .member-avatar {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: var(--primary-green);
        }

        .member-info {
            padding: 1.8rem;
        }

        .member-info h3 {
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
        }

        .member-title {
            color: var(--bright-green);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .member-bio {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Stats Section (custom for about) */
        .stats-showcase {
            background: linear-gradient(135deg, var(--dark-green) 0%, #1e3a2f 100%);
            color: var(--white);
            text-align: center;
        }

        .stats-showcase .section-title {
            color: var(--white);
        }

        .stats-container-about {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            min-width: 180px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--light-green);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* 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);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }
            .mission-vision, .story-section {
                grid-template-columns: 1fr;
            }
            .page-header h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @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;
        }
    }