/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    background-color: #2c2d2d;
}

header {
    background-color: #3e403f;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.header-buttons a {
    margin-left: 20px;
    padding: 8px 15px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
}

.header-buttons .login {
    background-color: transparent;
}

.header-buttons .work-with-us {
    background-color: #fff;
    color: #3e403f;
}

/* Hero Section */
#hero {
    background-color: #2c2d2d;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-text {
    text-align: center;
}

.hero-text h2 {
    font-size: 24px;
    margin: 0;
}

.hero-text h1 {
    font-size: 48px;
    margin: 10px 0 0;
}

/* Logo Section */
#logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3e403f;
    padding: 20px 0;
}

.center-logo {
    width: 100%;
    height: auto;
}

#logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3e403f;
    padding: 14px 0; /* 70% of 20px */
}

.center-logo {
    width: auto;
    height: 70%; /* Adjusted to 70% of the original size */
    object-fit: contain;
}
/* About Section */
#about {
    background-color: #2c2d2d;
    color: #fff;
    padding: 50px 0;
}

#about h2, #about h3 {
    text-align: center;
}

#about p, #about ul {
    width: 90%;
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

#about ul {
    list-style: disc;
    padding-left: 20px;
}

/* Services Section */
#services {
    background-color: #2c2d2d;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

#services h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service {
    width: 45%;
    background-color: #3e403f;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: left;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service p, .service h4, .service ul {
    font-size: 16px;
    margin-bottom: 10px;
}

.service ul {
    list-style: disc;
    padding-left: 20px;
}

/* Clients Section */
#clients {
    background-color: #2c2d2d;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

#clients h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.client-quote {
    background-color: #3e403f;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}

.client-quote p {
    margin: 0;
    font-size: 18px;
}

/* Resources Section */
#resources {
    background-color: #2c2d2d;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

#resources h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#resources h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

#resources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#resources ul li {
    margin-bottom: 10px;
}

#resources ul li a {
    color: #77aaff;
    text-decoration: none;
    font-size: 18px;
}

#resources ul li a:hover {
    text-decoration: underline;
}

/* Contact Section */
#contact {
    background-color: #2c2d2d;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#contact p {
    font-size: 18px;
    margin-bottom: 40px;
}

#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact form label {
    font-size: 16px;
    margin-bottom: 10px;
}

#contact form input,
#contact form textarea {
    width: 80%;
    max-width: 600px;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}

#contact form button {
    padding: 10px 20px;
    background-color: #3e403f;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Logo Section */
#logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3e403f;
    padding: 20px 0;
}

.center-logo {
    width: 100%;
    height: auto;
}

/* Login Section */
#login {
    background-color: #2c2d2d;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

#login h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#login form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#login form label {
    font-size: 16px;
    margin-bottom: 10px;
}

#login form input {
    width: 80%;
    max-width: 600px;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}

#login form button {
    padding: 10px 20px;
    background-color: #3e403f;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


/* Footer */
footer {
    background-color: #3e403f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    header, footer {
        padding: 10px 0;
    }

    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-buttons a {
        margin-top: 10px;
    }

    .service {
        width: 100%;
    }
}
