        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

        :root {
            --primary-color: #222222; /* Envato Dark Background */
            --secondary-color: #00c853; /* Envato Green */
            --accent-color: #ff6d00; /* Bright Orange */
            --background-light: #fef7f0; /* Light Cream Background */
            --text-light: #ffffff;
            --text-dark: #333333;
            --border-color: #e0e0e0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--background-light);
            color: var(--text-dark);
            margin: 0;
            padding: 0;
        }


        /* Navbar Styles */
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-light);
        }

        .navbar-brand:hover {
            color: var(--secondary-color);
        }

        .nav-link {
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--secondary-color);
        }

        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.6); /* Light border for toggler */
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
            /* White lines for the menu */
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            padding: 80px 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 1.5px;
        }

        .hero p {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* About Us Content */
        .about-container {
            padding: 40px 20px;
            text-align: center;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .about-container p {
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 30px;
            font-weight: 400;
            color: #444444;
        }

        /* Meet the Team Section */
        .team-section {
            background-color: var(--background-light);
            padding: 60px 20px;
            text-align: center;
        }

        .team-section h2 {
            color: var(--secondary-color);
            margin-bottom: 40px;
            font-size: 2rem;
            font-weight: 600;
        }

        .team-card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .team-card img {
            border-radius: 50%;
            width: 120px;
            height: 120px;
            object-fit: cover;
        }

        .team-card h3 {
            margin-top: 15px;
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 600;
        }

        .team-card p {
            margin-top: 10px;
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-dark);
        }

        /* Responsive Styles */
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .team-card img {
                width: 100px;
                height: 100px;
            }

            .about-container p {
                font-size: 1rem;
            }
        }