body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

/* HEADER */
.top-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #0b6623;
    color: white;
}

.logo {
    height: 60px;
    margin-right: 15px;
}

/* LABEL */
.label-section img {
    width: 100%;
    display: block;
}

/* NAV */
nav {
    background: #222;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #4CAF50;
}

/* HERO */
.hero {
    position: relative;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 15px;
}

/* SECTIONS */
.section {
    padding: 40px 20px;
    text-align: center;
}

.section.light {
    background: #f4f4f4;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-left: 5px solid #4CAF50;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* POINTS */
.points {
    list-style: none;
    padding: 0;
    font-size: 18px;
}

/* CONTACT FORM */
.contact-form {
    max-width: 400px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

.contact-form button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    width: 100%;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}
