/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Apply a common font and background color */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Header Styles */
header {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    width: 100px; /* Adjust the logo size */
}

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

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

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ccc;
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 100px 0;
}

.hero img {
    width: 100%;
    max-height: 400px; /* Adjust the image height */
}

.hero h1 {
    font-size: 36px;
    color: #333;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #555;
}

/* Services Section Styles */
.services {
    background-color: #fff;
    padding: 40px;
    text-align: center;
}

.services h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.service {
    margin-bottom: 30px;
}

.service h3 {
    font-size: 20px;
    color: #555;
}

.service p {
    font-size: 16px;
    color: #777;
}

/* About Us Section Styles */
.about {
    background-color: #f5f5f5;
    padding: 40px;
    text-align: center;
}

.about h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 16px;
    color: #555;
}

/* Testimonials Section Styles */
.testimonials {
    background-color: #fff;
    padding: 40px;
    text-align: center;
}

.testimonials h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.testimonial {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.testimonial p {
    font-size: 16px;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* Contact Section Styles */
.contact {
    text-align: center;
    padding: 60px 0;
    background-color: #333;
    color: #fff;
}

.contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.contact .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border: 2px solid #333;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.contact .cta-button:hover {
    background-color: #333;
    color: #fff;
}
