* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
	background-color: #2c3e50;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.burger {
    display: none;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: #1abc9c;
    color: white;
}

.hero h1 {
    font-size: 3em;
}

.hero p {
    font-size: 1.2em;
    margin-top: 20px;
}

.cta {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 30px;
    border-radius: 5px;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger {
        display: block;
        cursor: pointer;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1em;
    }
}

/* Hide the navigation menu by default on mobile */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

/* Hide the nav-links for mobile */
@media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        height: 100vh;
        background-color: #2c3e50;
        width: 100%;
        align-items: center;
        display: none;
    }

    .nav-active {
        display: flex;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px;
        transition: all 0.3s ease;
    }
}

/* Hide the navigation menu by default on mobile */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        height: 100vh;
        background-color: #2c3e50;
        width: 100%;
        align-items: center;
        display: none;
        padding-top: 50px; /* Add space at the top */
    }

    .nav-links li {
        margin: 20px 0; /* Add vertical space between items */
    }

    .nav-links a {
        font-size: 20px; /* Increase font size for better readability */
        padding: 10px 0; /* Add padding for more clickable area */
    }

    .nav-active {
        display: flex;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px;
        transition: all 0.3s ease;
    }
}






.trusted {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.trusted h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.trusted p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #666;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.logos img {
    width: 150px;
    margin: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logos img:hover {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .logos img {
        width: 120px;
        margin: 15px;
    }
}
