body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

header {
    background-color: #1f2f46;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

.cta-button {
    background-color: #1f2f46;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #3b4b69;
}

section {
    padding: 40px 20px;
}

section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.banner {
    background-image: url('banner.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.banner h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.banner p {
    font-size: 1.5em;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-list, .about-content, .resources-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service, .resource, .bio {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service img, .bio img {
    width: 100%;
    height: auto;
}

.service h3, .bio h3, .resource h3 {
    font-size: 1.8em;
    margin: 15px;
    color: #1f2f46;
}

.service p, .bio p, .resource p {
    font-size: 1.1em;
    margin: 15px;
    color: #555;
}

.rate {
    font-size: 1.2em;
    margin: 20px 0;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form label {
    font-weight: bold;
    color: #333;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

form button {
    background-color: #1f2f46;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #3b4b69;
}

footer {
    background-color: #1f2f46;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .social-media a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-media a:hover {
    text-decoration: underline;
}
