@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

.icon {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    margin-right: 10px;
    vertical-align: middle; /* Align icon vertically */
}
.logo-link {
    text-decoration: none;
}
.logo-link .logo {
    color: inherit; /* Ensures the color remains as per the parent element */
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    color: #5fbf7f;
    font-size: 28px;
    font-weight: 600;
}

.navbar .menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end; /* This will push items to the right */
}

.navbar .menu a {
    color: #000;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    font-weight: 600;
}

.navbar .menu a:hover {
    color: #5fbf7f;
}

.navbar .menu .get-started {
    background-color: #4cae6d;
    
    color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 18px;
    margin-left: 0px; /* Adjust as needed */
}

.navbar .menu .get-started:hover {
    background-color: #4cae6d;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #2C1A7E;
    color: white;
    padding: 20px;
    margin-top: 70px; /* Adjust the value as needed */
}

.header-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header img {
    width: 500px; /* Increased size for better visibility */
    height: auto;
    padding-left: 90px; /* Move image slightly to the left */
}

.header-text {
    flex: 1;
    text-align: left;
    padding-right: 90px; /* Move text slightly to the right */
}

.header h1 {
    margin: 0;
    font-size: 2em;
}

.header h2 {
    margin: 10px 0;
    font-size: 1.5em;
}

.header ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0 0;
}

.header li {
    font-size: 1em;
    margin: 5px 0;
}

.help-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.help-text {
    background-color: #FFA500;
    color: white;
    padding: 50px;
    text-align: center;
    font-size: 3em;
    font-weight: bold;
    height: 290px;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
}

.faq-category {
    background-color: #E8E8E8;
    padding: 20px;
    margin: 10px 0;
    border-radius: 5px;
}

.faq-category h4 {
    margin: 0;
    font-size: 1.2em;
}

.faq-category p {
    margin: 10px 0 0;
    font-size: 1em;
}
/* For screens smaller than 768px (typical mobile phones) */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px; /* Adjust padding for smaller size */
    }

    .navbar .logo {
        font-size: 24px; /* Decrease font size for smaller screens */
    }

    .navbar .menu {
        justify-content: center; /* Center align menu items */
        margin-top: 10px; /* Adjust spacing as needed */
    }

    .navbar .menu a {
        margin: 0 10px; /* Reduce margin between menu items */
        font-size: 16px; /* Decrease font size for smaller screens */
    }

    .header img {
        max-width: 100%; /* Ensure the header image is responsive */
        height: auto; /* Maintain aspect ratio */
        padding: 0 20px 20px; /* Adjust padding for better spacing */
    }

    .header-text {
        text-align: center; /* Center align text */
        padding: 0 20px; /* Adjust padding for better spacing */
    }

    .header h1 {
        font-size: 1.8em; /* Decrease font size for smaller screens */
    }

    .header h2 {
        font-size: 1.2em; /* Decrease font size for smaller screens */
    }

    .faq-categories {
        padding: 0 20px; /* Adjust padding for smaller screens */
    }

    .faq-category {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .help-section {
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .help-text {
        padding: 20px; /* Adjust padding for smaller screens */
        font-size: 2em; /* Adjust font size for smaller screens */
    }
}
