* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #0c7a5c;
    padding: 16px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #0c7a5c, #14a67b);
    padding: 80px 0;
    color: #fff;
}

.hero h1 {
    font-size: 42px;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #0c7a5c;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

/* SECTION */
.section {
    padding: 70px 0;
}

.section.light {
    background: #f5f7f6;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

/* PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-card button {
    margin-top: 10px;
    background: #0c7a5c;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* BENEFITS */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

/* GALLERY */
.gallery-section {
    background: #eef6f3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

/* EVENTS */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event-content {
    padding: 20px;
}

.event-date {
    color: #0c7a5c;
    font-weight: bold;
    font-size: 13px;
}

/* FOOTER */
.footer {
    background: #0c7a5c;
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    background: #095e46;
    padding: 16px 0;
    margin-top: 40px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* CONTACT HERO */
.contact-hero {
    background: linear-gradient(to right, #0c7a5c, #14a67b);
    color: #fff;
    text-align: center;
    padding: 90px 0;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* CONTACT INFO */
.contact-info h2,
.contact-form h2 {
    margin-bottom: 20px;
    color: #0c7a5c;
}

.contact-info p {
    margin-bottom: 14px;
    font-size: 16px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 12px;
    color: #14a67b;
    font-weight: 600;
    text-decoration: none;
}

/* FORM */
.contact-form form {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #14a67b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0c7a5c;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}
