/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo h1 {
    margin: 0;
    font-size: 24px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.header-content {
    padding: 50px 20px;
}

.header-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #e67e22;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.features-section {
    padding: 50px 20px;
    background: #ecf0f1;
    text-align: center;
}

.features-section .feature {
    margin: 20px 0;
}

.features-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.features-section p {
    font-size: 16px;
}

.about-section {
    padding: 50px 20px;
    text-align: center;
}

.contact-section {
    padding: 50px 20px;
    background: #ecf0f1;
    text-align: center;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-section label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}
