* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7f5;
    color: #1f2937;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

header {
    background: linear-gradient(135deg, #1d8738, #166b2d);
    color: #fff;
    padding: 28px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-area img {
    max-height: 70px;
    width: auto;
    display: block;
}

.logo {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #ffffff;
    color: #1d8738;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.brand h1 {
    font-size: 28px;
    margin-bottom: 4px;
}

.brand p {
    font-size: 14px;
    opacity: 0.95;
}

.hero {
    background:
        linear-gradient(rgba(29, 135, 56, 0.85), rgba(22, 107, 45, 0.85)),
        url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: #fff;
    padding: 45px 0 35px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    align-items: center;
}

.hero-text h2 {
    font-size: 30px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 10px;
    max-width: 650px;
}

.hero-highlight {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 14px;
    backdrop-filter: blur(4px);
}

.hero-highlight strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.hero-highlight span {
    font-size: 14px;
}

.hero-image-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    max-width: 360px;
}

.hero-image-card img {
    width: 100%;
    border-radius: 14px;
    display: block;
    height: 220px;
    object-fit: cover;
}

section {
    padding: 55px 0;
}

.section-title {
    font-size: 28px;
    color: #1d8738;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #3a5f46;
    margin-bottom: 28px;
    max-width: 800px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(29, 135, 56, 0.15);
}

.info-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.info-card .content {
    padding: 18px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
}

.info-card p {
    font-size: 14px;
    color: #4b5563;
}

.access-section {
    background: #ffffff;
}

.group-box {
    background: #f3fbf6;
    border: 1px solid #cdebd5;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.group-box h3 {
    color: #1d8738;
    margin-bottom: 16px;
    font-size: 22px;
}

.btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.access-btn {
    display: block;
    background: linear-gradient(135deg, #1d8738, #166b2d);
    color: #fff;
    padding: 16px 18px;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(29, 135, 56, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 135, 56, 0.18);
}

.about-box {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.about-box p {
    margin-bottom: 14px;
    color: #374151;
    font-size: 16px;
}

.white-btn {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #dbe5dd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    padding: 14px 16px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.white-btn img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.white-btn span {
    text-align: left;
}

.white-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 135, 56, 0.15);
    background: #ffffff;
}

.white-btn.vertical {
    padding: 20px 18px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.white-btn.vertical img {
    width: 130%;
    height: 110px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
}

.white-btn.vertical span {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.2px;
    margin-top: 8px;
    padding: 0 8px;
    display: block;
}

footer {
    background: #12301b;
    color: #d8e6dc;
    text-align: center;
    padding: 24px 15px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-image-card {
        max-width: 100%;
    }

    .hero-image-card img {
        height: 240px;
    }
}

@media (max-width: 600px) {
    .brand h1 {
        font-size: 24px;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .group-box {
        padding: 18px;
    }

    .white-btn.vertical {
        height: auto;
        min-height: 200px;
    }

    .white-btn.vertical img {
        width: 100%;
        height: 95px;
    }

    .white-btn.vertical span {
        font-size: 13px;
        line-height: 1.4;
    }
}