/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8f1; /* Light Green Background */
    color: #333;
}

h1, h2, h3 {
    color: #2c6e49; /* Dark Green */
}

a {
    text-decoration: none;
    color: #2c6e49;
}

a:hover {
    color: #517f57;
}

/* Header */
header {
    background-color: #2c6e49;
    padding: 20px;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

/* Hero Section */
.hero {
    background-color: #8ecf72; /* Lighter Green */
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
}

.hero .cta-button {
    background-color: #517f57;
    color: white;
    padding: 10px 20px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.hero .cta-button:hover {
    background-color: #2c6e49;
}

/* Principles Section */
.principles {
    padding: 50px 20px;
    background-color: #e5f2e0; /* Very light green */
}

.principles-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.principle {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    padding: 50px 20px;
    text-align: center;
    background-color: #d9e6d3;
}

.product-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.product-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card button {
    background-color: #517f57;
    color: white;
    padding: 10px 20px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.product-card button:hover {
    background-color: #2c6e49;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: #f0f8f1;
    text-align: center;
}

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

.contact input,
.contact textarea {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background-color: #517f57;
    color: white;
    padding: 10px 20px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.contact button:hover {
    background-color: #2c6e49;
}

/* Footer */
footer {
    background-color: #2c6e49;
    color: white;
    text-align: center;
    padding: 20px;
}
