/* Reset some default styles */
body, h1, h2, p, ul, li, blockquote {
    margin: 0;
    padding: 0;
}

/* Basic styling for the body */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 1em 0;
}

nav {
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero section styles */
.hero {
    text-align: center;
    padding: 4em 0;
    background-color: #f4f4f4;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Features section styles */
.features {
    text-align: center;
    padding: 4em 0;
}

.feature {
    margin-bottom: 40px;
}

.feature h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* Testimonial section styles */
.testimonial {
    text-align: center;
    padding: 4em 0;
    background-color: #f4f4f4;
}

blockquote {
    font-style: italic;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

cite {
    display: block;
    font-size: 1.2em;
    color: #777;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 2em 0;
    background-color: #333;
    color: #fff;
}

footer p {
    font-size: 1.2em;
}
