body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

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

.site-header {
    background: #222;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.logo {
    height: 80px; /* Adjust the height as needed */
    width: auto;
        padding: 10px; /* Adjust padding for better spacing */
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.brand {
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list li {
    margin: 0;
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 10px;
    transition: background 0.3s ease;
}

.nav-list li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
}

.about-section,
.services-section,
.partners-section,
.team-section,
.contact-section {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
}

.service-item {
    margin-bottom: 40px;
}

.service-item h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.service-item p {
    font-size: 1.1em;
    line-height: 1.6;
}

.partners-logos {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partners-logos img {
    width: 120px;
    margin: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-logos img:hover {
    filter: none;
}

.team-section .team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-section .team-member img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-section .team-member h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
}

.team-section .team-member p {
    font-size: 1.1em;
    color: #666;
}

.contact-section {
    text-align: center;
}

.contact-form {
    width: 50%;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-button {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #0056b3;
}

.site-footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 1.1em;
}