/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Styles */
header {
    background-color: #007B4F;
    color: #fff;
    padding: 20px 0;
}

header .logo h1 {
    font-size: 32px;
    font-weight: 600;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-color: #003d28;
    color: white;
    text-align: center;
    padding: 80px 0;
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons a {
    text-decoration: none;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    margin: 10px;
}

.cta-buttons .btn.primary {
    background-color: #007B4F;
}

.cta-buttons .btn.secondary {
    background-color: #004e36;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #fff;
}

.features h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.feature {
    text-align: center;
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

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

/* Contact Form Section */
.contact {
    background-color: #f1f1f1;
    padding: 60px 0;
}

.contact h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact form label {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact form button {
    background-color: #007B4F;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.contact form button:hover {
    background-color: #005b3a;
}

/* Demo Section */
.demo {
    padding: 60px 0;
    text-align: center;
}

.demo p {
    font-size: 18px;
    margin-bottom: 20px;
}

.demo a {
    text-decoration: none;
    background-color: #007B4F;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
}

.demo a:hover {
    background-color: #005b3a;
}

/* Footer */
footer {
    background-color: #003d28;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

