    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html,
    body {
        font-family: 'Inter', sans-serif;
        scroll-behavior: smooth;
        height: 100%;
        background-color: #0f172a;
    }

    #particles-js {
        position: absolute;
        width: 100%;
        height: 100vh;
        z-index: 1;
    }

    .hero-full {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: white;
        text-align: center;
        z-index: 2;
    }

    .hero-content {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .scroll-down {
        margin-top: 3rem;
        font-size: 1rem;
        color: #38bdf8;
        text-decoration: none;
        display: inline-block;
        padding: 0.6rem 1.5rem;
        border: 2px solid #38bdf8;
        border-radius: 8px;
        transition: 0.3s;
    }

    .scroll-down.cta-glow {
        border: 2px solid #00e0ff;
        box-shadow: 0 0 8px #00e0ff;
        transition: all 0.3s ease-in-out;
    }

    .scroll-down.cta-glow:hover {
        background: #00e0ff;
        color: #0f172a;
        box-shadow: 0 0 20px #00e0ff;
    }

    .main-section {
        background-color: #f9fafb;
        padding: 4rem 2rem;
        text-align: center;
    }

    .values-section {
        background-color: #0f172a;
        color: #ffffff;
        padding: 4rem 2rem;
        text-align: center;
    }

    .main-section h2 {
        font-size: 2rem;
        color: #0f172a;
    }

    .values-section p {
        font-size: 1.1rem;
        max-width: 650px;
        margin: 1rem auto;
        color: #4b5563;
    }

    .values-section h2 {
        font-size: 2.5rem;
        color: #ffffff;
    }

    .main-section p {
        font-size: 1.1rem;
        max-width: 650px;
        margin: 1rem auto;
        color: #4b5563;
    }

    .benefits {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .benefit-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        width: 280px;
    }

    .benefit-card h3 {
        color: #0f172a;
    }

    .cta-button {
        background-color: #fbbf24;
        color: white;
        padding: 0.8rem 2rem;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        cursor: pointer;
        margin-top: 2rem;
    }

    footer {
        background: #f3f4f6;
        text-align: center;
        padding: 2rem;
        color: #6b7280;
        font-size: 0.9rem;
    }

    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.1);
        /**background-color: #0f172a; 
  padding: 1rem 2rem;**/
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        height: 150px;
        object-fit: contain;
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        font-size: 18px;
    }

    .nav-links a:hover {
        color: #38bdf8;
    }

    .cta-nav {
        background-color: #fbbf24;
        color: #0f172a;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 600;
        transition: background-color 0.3s;
    }

    .cta-nav:hover {
        background-color: #f59e0b;
    }

    .menu-toggle {
        display: none;
    }

    .hamburger {
        display: none;
        font-size: 1.8rem;
        color: white;
        cursor: pointer;
    }

    .about-section {
        background-color: #ffffff;
        padding: 4rem 2rem;
        text-align: left;
        max-width: 900px;
        margin: auto;
        color: #1f2937;
    }

    .about-section h2 {
        font-size: 2rem;
        color: #0f172a;
        margin-bottom: 1rem;
        text-align: center;
    }

    .about-section h3 {
        font-size: 1.3rem;
        color: #0f172a;
        margin-top: 2rem;
    }

    .about-section p {
        font-size: 1.05rem;
        color: #374151;
        line-height: 1.7;
        margin-top: 0.5rem;
    }

    .about-section ul {
        margin-top: 1rem;
        padding-left: 1.5rem;
    }

    .about-section li {
        margin-bottom: 1rem;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .contact-section {
        padding: 4rem 2rem;
        background-color: #f9fafb;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 2rem;
        color: #0f172a;
        margin-bottom: 0.5rem;
    }

    .contact-section p {
        color: #4b5563;
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    .contact-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        align-items: flex-start;
    }

    .contact-form {
        flex: 1;
        min-width: 500px;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 1rem;
    }

    .contact-form button {
        background-color: #fbbf24;
        color: white;
        padding: 0.8rem;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        cursor: pointer;
    }

    .contact-form button:hover {
        background-color: #f59e0b;
    }

    .map-container {
        flex: 1;
        min-width: 300px;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }



    @media (max-width: 600px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1rem;
        }

        .logo {
            display: none;
        }

        .nav-links {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #0f172a;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
            padding: 1rem 2rem;
            display: none;
        }

        .cta-nav {
            text-align: center;
        }

        .nav-links a {
            padding: 0.8rem 0;
            width: 100%;
            border-bottom: 1px solid #1e293b;
        }

        .hamburger {
            display: block;
        }

        .menu-toggle:checked+.hamburger+.nav-links {
            display: flex;
        }

        .contact-container {
            flex-direction: column;
            align-items: center;
        }

        .contact-form {
            min-width: 100%;
            max-width: 100%;
            width: 100%;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            font-size: 1rem;
        }

        .map-container {
            width: 100%;
            height: 300px;
            margin-top: 1.5rem;
        }
    }