* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.header {
    background-color: #4caf50;
    padding: 20px;
    text-align: center;
}

.header .logo a {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.header nav ul li {
    margin: 0 15px;
}

.header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    background-color: #76c7c0;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #f4f4f4;
    padding: 15px 25px;
    font-size: 18px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #ddd;
}

.about {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
}

.testimonials {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
}

.testimonial h3 {
    font-size: 16px;
    margin-top: 10px;
    color: #555;
}

/* Blog Section */
.blog {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}

.blog h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.blog ul {
    list-style-type: none;
    padding: 0;
}

.blog li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Privacy Policy Section */
.privacy-policy {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.privacy-policy h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.privacy-policy h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact ul {
    list-style-type: none;
    padding: 0;
}

.contact li {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .cta-button {
        font-size: 16px;
    }
}