body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scrolling on the entire page */
    background-color: black;
}


nav {
    background-color: black;
    color: white;
    padding: 10px;
    padding-left: 100px;
    padding-right: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}

nav .logo img {
    height: 40px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0px;
}

#hamburger-menu, #close-menu {
    display: none;
    cursor: pointer;
    font-size: 35px;
    color: white;
}

#menu {
    display: flex;
}

.login-highlight {
    background: linear-gradient(to right, #ff8a00, #ef2626);
    border-radius: 10px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.login-border {
    border: 2px solid #ff8a00;
    border-radius: 10px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}


@media screen and (max-width: 800px) {
    #hamburger-menu {
        display: block;
    }
    #menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        z-index: 1000;
        justify-content: center;
    }
    #menu.open {
        display: flex;
    }
    #menu li {
        float: none;
        margin-bottom: 30px; /* Added margin to create space between items */
    }
    #menu li a {
        color: white;
        padding: 20px;
        font-size: 24px;
        text-align: center;
    }
    #close-menu {
        display: block;
        position: fixed;
        top: 10px;
        right: 10px;
        font-size: 28px;
        color: white;
        z-index: 1001;
    }
}

section {
    padding: 50px 20px;
}

#home {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#home .home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home h1 {
    font-size: 2em;
}

#home .highlight {
    background-color: #00E2FF;
    border-radius: 5px;
    padding: 5px;
}

#home .image-container {
    width: 100%; /* Adjust the percentage as needed to fit the image nicely */
    margin-top: 50px; /* Add some margin to separate the image from the text */
}

#home .image-container img {
    width: 100%;
    height: auto;
}

#home .button {
    background: linear-gradient(to right, #ff8a00, #ef2626);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
}

@media (min-width: 800px) {
    #home {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    #home .home-container {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    #home .content {
        flex: 1;
        margin-right: 20px;
        margin-left: 100px
    }

    #home .image-container {
        flex: 0 0 auto;
        max-width: 50%; /* Adjust the percentage as needed to fit the image nicely */
        margin-left: 20px;
        margin-right: 100px;
    }

    #home .image-container img {
        width: 100%;
        height: auto;
    }

    #home h1 {
        font-size: clamp(2em, 2vw + 1em, 4em);
    }
}

#languages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Adjust the min width to fit three columns */
    justify-content: center;
    gap: 20px;
    background: linear-gradient(to right, #ff8a00, #ef2626);
}

#languages .square {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

#languages .square img {
    width: 50px;
    height: 50px;
}

#languages .square p {
    margin-top: 10px;
}

#features {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f3f3f3;
}

#features .section-title {
    font-size: 2.5em; /* Increase the title font size */
    margin-bottom: 20px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.feature-content .text-content {
    max-width: 600px;
}

#features .button {
    background: linear-gradient(to right, #ff8a00, #ef2626);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    width: 110px; /* Fixed width for the button */
    text-align: center; /* Center the text inside the button */    
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    width: 90%;
    padding: 20px;
}

.feature {
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.feature img {
    width: 80px;
    height: 80px;
}

@media (min-width: 800px) {
    .feature-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .feature-content .text-content {
        flex: 1;
        margin-right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center content vertically */
        align-items: center; /* Center items horizontally */
        margin-left: 100px;
    }

    .feature-content .images {
        flex: 1;
    }

    .feature-content .images img {
        width: 100%; /* Ensure the image takes up the available space */
        height: auto;
    }
}

@media (max-width: 799px) {
    .feature-content .images img {
        width: 100%; /* Ensure the image takes up the available space */
        height: auto;
    }

    .feature-content .text-content {
        align-items: center; /* Center items horizontally for smaller screens */
        margin-bottom: 20px;
    }
}

table {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-collapse: collapse;
    background-color: black;
}

.comparison-logo img {
    height: 40px;
}

th, td {
    padding: 15px;
    text-align: center;
}

th {
    color: gray;
    font-size: 1.2em;
}

td {
    color: gray;
    position: relative;
}

.row-title {
    color: white;
    font-size: 1em;
    text-align: left;
}

.row-divider {
    border-top: 1px solid gray;
}

.comparison-tick img {
    height: 50px;
}

.cross {
    color: gray;
    font-size: 30px;
}

@media (max-width: 650px) {
    th, td {
        padding: 2px;
        font-size: 0.5em;
    }

    .row-title {
        font-size: 0.9em;
    }

    .comparison-logo img {
        height: 20px;
    }

    .comparison-tick img {
        height: 30px;
    }
}

@media (max-width: 320px) {
    th, td {
        padding: 5px;
        font-size: 0.8em;
    }
}

#pricing {
    background-color: black;
    color: white;
    padding: 50px;
    text-align: center;
}

.pricing-plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.pricing-plan {
    background: linear-gradient(to right, #ff8a00, #ef2626);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    flex: 1 1 calc(33.33% - 40px);
    box-sizing: border-box;
}

.pricing-plan .price {
    font-size: 1.5em;
    margin: 20px 0;
}

.pricing-plan .price .original-price {
    text-decoration: line-through;
    color: black;
    margin-right: 10px;
}

.pricing-plan button {
    background-color: #00E2FF;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}
/* Media query for screens narrower than 768px */
@media (max-width: 768px) {
    .pricing-plan {
        flex: 1 1 100%;
    }
}


#faqs {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px; /* Added padding for better spacing around the FAQ items */
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
    max-width: 80%;
    width: 100%; /* Ensures that faq-item takes the full width of the parent */
    box-sizing: border-box; /* Ensures padding and border are included in the width */
}

.faq-question {
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding: 10px 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.contact-left {
    margin-bottom: 20px;
}

.social-icons a {
    font-size: 2em; /* Increase icon size */
    color: #00E2FF; /* Change icon color */
    margin: 0 10px; /* Add some spacing between icons */
    transition: color 0.3s; /* Smooth transition for color change on hover */
}

.social-icons a:hover {
    color: #ff8a00; /* Change color on hover */
}

.contact-right form {
    width: 100%;
    max-width: 400px;
}

.contact-right input, .contact-right textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
}

.contact-right button {
    background: linear-gradient(to right, #ff8a00, #ef2626);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}


/* Media query for screens 800px wide or more */
@media (min-width: 800px) {
    .contact-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-left {
        flex: 1 1 25%;
        margin-bottom: 0;
        padding-right: 20px;
        margin-left: 200px;
    }
    
    .contact-right {
        flex: 1 1 75%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-right form {
        max-width: 60%;
    }
}

footer {
    background-color: black;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-logo img {
    height: 200px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-left: 20px;
}

.footer-nav ul li a {
    color: white;
    text-decoration: none;
}

footer .copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 625px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    .footer-nav ul li {
        margin: 5px 0;
    }
}


/* Styles for the Articles Section */
#articles {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.articles-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.article {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.article:hover {
    transform: translateY(-5px);
}

.article img {
    width: 100%;
    height: auto;
    display: block;
}

.article h3 {
    padding: 15px 20px 0;
    font-size: 1.5em;
    color: #333;
}

.article p {
    padding: 0 20px;
    color: #666;
}

.article .read-more {
    display: block;
    padding: 15px 20px;
    text-align: right;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.article .read-more:hover {
    text-decoration: underline;
}




.policies-section {
    color: white;
 }