body {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    background-color: #f5f1e8;
    color: #222;
}

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

h1, h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 3rem;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero, .mission {
    text-align: center;
    padding: 50px 20px;
}

.interactive-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px;
}

.card {
    background: white;
    border-radius: 15px;
    width: 300px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    border-radius: 12px;
}

.hidden-text {
    display: none;
    margin-top: 15px;
}

footer {
    background-color: #2e6b4f;
    color: white;
    text-align: center;
    padding: 15px;
}

@media (max-width: 768px) {

    nav li {
        display: block;
        margin: 10px 0;
    }

    .interactive-cards {
        flex-direction: column;
        align-items: center;
    }

}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #2e6b4f;
    color: white;
    flex-wrap: wrap;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


.logo-container h1 {
    font-size: 2.5rem;
    margin: 0;
}


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

nav li {
    display: inline-block;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
    }

    nav li {
        display: block;
        margin: 8px 0;
    }
}

.page-title {
    text-align: center;
    padding: 40px 20px;
}

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

.filter-section select {
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.product-card {
    background: white;
    width: 280px;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}
.about-story,
.about-mission {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.timeline-section {
    text-align: center;
    padding: 40px 20px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.timeline-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: scale(1.03);
}

.timeline-item h3 {
    color: #2e6b4f;
    margin-bottom: 5px;
}

.blog-card {
    background: white;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: scale(1.02);
}

.blog-card h3 {
    color: #2e6b4f;
}

.blog-card ul,
.blog-card ol {
    text-align: left;
    padding-left: 20px;
}

.blog-card li {
    margin-bottom: 8px;
}

.contact-info {
    text-align: center;
    padding: 20px;
}

table {
    margin: auto;
    border-collapse: collapse;
    width: 90%;
    max-width: 700px;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

th {
    background-color: #2e6b4f;
    color: white;
}

.contact-form-section {
    text-align: center;
    padding: 30px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Josefin Sans', sans-serif;
}

button {
    padding: 10px;
    background-color: #2e6b4f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background-color: #24533d;
}

#formMessage {
    margin-top: 10px;
    font-weight: bold;
}