    body {
        margin: 0;
        padding: 0;
        font-family: 'Inter', sans-serif;
        background: #1e1e1e;
        color: white;
        overflow-x: hidden;
        opacity: 0;
        animation: fadeIn 1s ease-in-out forwards;
        text-align: center;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }


    h1, p {
        margin: 0;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 8rem;
        background: #1e1e1e;
        position: relative;
    }

    nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 1rem;
        background: transparent;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }

    nav ul li a:hover {
        color: #ffffff;
        background-color: #00B0FF;
        transform: scale(1.05);
    }

    nav ul li:nth-child(2) a {
        font-weight: bold;
        color: #ffffff;
        border: 2px solid #00B0FF;
        padding: 0.5rem 1rem;
        background: #00B0FF;
    }

    nav ul li:nth-child(2) a:hover {
        background: #ffffff;
        color: #00B0FF;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .logo-container h1 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #ffffff;
        position: relative;
    }

    .logo-container .logo {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 1rem;
        background: transparent;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }

    nav ul li a:hover {
        color: #ffffff;
        background-color: #00B0FF;
        transform: scale(1.05);
    }

    .main-content {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0rem 8rem;
        gap: 1rem;
        min-height: 60vh;
    }

    .text-content {
        max-width: 50%;
    }

    .text-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .text-content h1 .highlight {
        color: #00B0FF;
    }

    .text-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .button-group {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .main-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        transition: transform 0.2s ease, background-color 0.3s ease;
    }

    .main-button:hover {
        transform: scale(1.05);
    }

    .main-button {
        background: transparent;
        color: #ffffff;
        border: 2px solid #00B0FF;
    }

    .main-button.secondary {
        background: transparent;
        color: #ffffff;
        border: 2px solid #00B0FF;
    }

    .main-button.prim {
        background: #00B0FF;
        color: white;
    }

    .main-button.prim:hover {
        background: white;
        color: #00B0FF;
    }

    .image-content {
        max-width: 45%;
    }

    .image-content img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    }

    footer {
        background-color: #1e1e1e;
        color: #c0c0c0;
        padding: 50px;
        text-align: center;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        display: inline-block;
        margin: 0 15px;
    }

    .footer-links a {
        color: #59aaff;
        text-decoration: none;
        font-size: 16px;
    }

    .footer-links a:hover {
        color: #00B0FF;
    }

    footer p {
        margin-top: 15px;
        font-size: 14px;
        color: #777;
    }

    .faq-section {
        padding: 1rem;
        background: #1e1e1e;
        color: white;
        border-radius: 10px;
        text-align: center;
        margin: auto;
        width: 50%;
        max-width: 800px;
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    }

    .faq-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
        color: #ffffff;
    }

    .faq-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .faq-item {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    }

    .faq-question {
        width: 100%;
        padding: 1rem;
        text-align: left;
        background: #1e1e1e;
        color: white;
        border: none;
        font-size: 1.2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .faq-question:hover {
        background: #00B0FF;
        color: white;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 1rem;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-answer p {
        color: white;
        font-size: 1rem;
        margin: 1rem 0;
        line-height: 1.6;
    }

    .faq-answer a {
        color: #00B0FF;
        text-decoration: none;
        font-weight: 600;
    }

    .faq-answer a:hover {
        text-decoration: underline;
    }

    .toggle-icon {
        font-size: 1.5rem;
        color: white;
        transition: transform 0.3s ease;
    }

    .faq-question[aria-expanded="true"] .toggle-icon {
        transform: rotate(45deg);
    }

    .menu-toggle {
        display: none;
        background: transparent;
        border: none;
        font-size: 2rem;
        color: #ffffff;
        cursor: pointer;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        z-index: 1000;
    }

    .features-section {
        padding: 2rem 6rem;
        margin-top: -4rem;
        background-color: #1e1e1e;
        color: white;
        text-align: center;
        min-height: 50lvh;
    }

    .features-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .features-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: #c0c0c0;
    }

    .features-container {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-card {
        background: #1e1e1e;
        border-radius: 10px;
        padding: 2rem;
        width: 200px;
        text-align: center;
        box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: scale(1.15);
    }

    .feature-card .icon img {
        width: 50px;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        color: #00B0FF;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 1rem;
        color: #c0c0c0;
        line-height: 1.6;
    }

    @media (max-width: 1150px) {
        /* Header */
        header {
            flex-direction: column;
            padding: 1rem;
            text-align: center;
        }

        nav {
            position: static;
            transform: none;
            margin-top: 1rem;
        }

        nav ul {
            flex-direction: column;
            gap: 1rem;
        }

        .logo-container {
            justify-content: center;
        }

        .logo-container h1 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .logo-container .logo {
            width: 30px;
            height: 30px;
        }

        /* Main Content */
        .main-content {
            flex-direction: column;
            text-align: center;
            padding: 1rem;
        }

        .text-content {
            max-width: 90%;
            margin: 0 auto;
        }

        .text-content h1 {
            font-size: 1.8rem;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .text-content p {
            font-size: 1rem;
            line-height: 1.4;
        }

        .button-group {
            flex-direction: column;
            gap: 0.5rem;
        }

        .main-button {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }

        /* Features Section */
        .features-section {
            padding: 1rem;
        }

        .features-container {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .feature-card {
            width: 90%;
        }

        /* FAQ Section */
        .faq-section {
            width: 90%;
        }

        /* Footer */
        footer {
            padding: 1rem;
        }

        .footer-links {
            flex-direction: column;
            text-align: center;
        }

        .footer-links li {
            margin: 10px 0;
        }

        footer p {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 480px) {
        .text-content h1 {
            font-size: 1.5rem;
        }

        .text-content p {
            font-size: 0.9rem;
        }

        .main-button {
            font-size: 0.8rem;
            padding: 0.4rem 0.8rem;
        }

        .feature-card h3 {
            font-size: 1rem;
        }

        .feature-card p {
            font-size: 0.9rem;
        }

        footer p {
            font-size: 0.7rem;
        }
    }