body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}

nav {
    background-color: #34495e;
    text-align: center;
    padding: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a.active {
    text-decoration: underline;
}

.hero {
    background-color: #2980b9;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

main {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    color: #2c3e50;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

ol {
    padding-left: 20px;
}

.contact-form {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #2980b9;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #1f669c;
}

.cta {
    text-align: center;
    background-color: #16a085;
    color: white;
    padding: 30px;
    margin-top: 20px;
    border-radius: 8px;
}

.button {
    background-color: white;
    color: #16a085;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

.button:hover {
    background-color: #1abc9c;
    color: white;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    margin-top: 20px;
}