/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h3 {
    font-family: 'Oswald', sans-serif;
    color: #1d1515;
    font-size: 3em;
    margin-bottom: 10px
}


a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navbar Styles */
#navbar {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

#navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

#navbar ul li {
    margin: 0 15px;
}

#navbar ul li a {
    color: #fff;
    font-weight: bold;
}

/* Hero Section Styles */
#hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

#hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
    color: #fff;
}

/* Section Styles */
section {
    padding: 30px 10px;
    text-align: center;
}

section h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Section Styles */
#team {
    background-color: #fff;
}

.team-member {
    display: inline-block;
    width: 30%;
    margin: 20px 1.5%;
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
}

.team-member h4 {
    margin-top: 10px;
    font-size: 1.2em;
}

/* Testimonials Section Styles */
#testimonials {
    background-color: #f9f9f9;
}

blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
    border-left: 5px solid #007BFF;
    background-color: #fff;
}

blockquote footer {
    text-align: right;
    font-weight: bold;
}

/* Call to Action Section Styles */
#call-to-action {
    background-color: #007BFF;
    color: #fff;
    padding: 40px 20px;
}

#call-to-action .btn {
    background-color: #fff;
    color: #007BFF;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

#call-to-action .btn:hover {
    background-color: #f4f4f4;
}

/* Footer Styles */
#footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

#footer a {
    color: #fff;
    margin: 0 10px;
}

#footer a:hover {
    text-decoration: underline;
}