* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family:
        "Noto Sans KR",
        "Apple SD Gothic Neo",
        Arial,
        sans-serif;
    background: #f7f8f4;
    color: #252525;
    line-height: 1.8;
}

.container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
}

img {
    width: 100%;
    display: block;
}

/* Hero */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.88)
        ),
        url("../images/hero.jpg") center / cover;
}

.hero-content {
    width: 100%;
    padding: 70px 40px 50px;
    background:
        linear-gradient(
            to top,
            rgba(255, 255, 255, 0.98),
            rgba(255, 255, 255, 0)
        );
}

.label {
    display: inline-block;
    padding: 7px 15px;
    margin-bottom: 15px;
    border-radius: 20px;
    background: #e9f1df;
    color: #477044;
    font-size: 13px;
    font-weight: 600;
}

h1 {
    font-size: 38px;
    line-height: 1.35;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.hero-sub {
    font-size: 17px;
    color: #555;
}

/* Sections */
.section {
    padding: 60px 42px;
}

.section--green {
    background: #f1f6ea;
}

.section--beige {
    background: #faf7ef;
}

.eyebrow {
    color: #5c8050;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

h2 {
    font-size: 29px;
    line-height: 1.45;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
}

.quote {
    margin: 30px 0;
    padding: 25px;
    border-left: 4px solid #6e9660;
    background: #f5f8f1;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.intro-image {
    border-radius: 18px;
    margin: 30px 0;
    height: 360px;
    object-fit: cover;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 30px;
}

.card {
    padding: 25px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5e9df;
}

.card-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #dcebd3;
    color: #416b3b;
    font-weight: 700;
}

.card p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Media */
.media-block {
    margin: 0;
}

.full-image {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.image-caption {
    padding: 12px 20px;
    font-size: 13px;
    color: #777;
    background: #f8f8f8;
}

.info-box {
    padding: 28px;
    margin: 30px 0;
    border-radius: 18px;
    background: #f6f8f3;
}

.info-box strong {
    color: #477044;
}

/* Steps */
.step {
    display: flex;
    gap: 18px;
    margin: 25px 0;
    align-items: flex-start;
}

.step-icon {
    flex: 0 0 48px;
    height: 48px;
    border-radius: 50%;
    background: #527c49;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 5px;
}

.step-content p {
    margin-bottom: 0;
}

/* Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.two-column img {
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: #444;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #5b8b50;
    font-weight: 700;
}

/* FAQ */
.faq {
    border-top: 1px solid #ddd;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid #ddd;
}

.faq-q {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
}

.faq-a {
    color: #666;
    font-size: 14px;
}

/* CTA / Form */
.cta {
    padding: 65px 35px;
    text-align: center;
    background: linear-gradient(135deg, #eef5e8, #f9f7ed);
}

.cta h2 {
    margin-bottom: 15px;
}

.cta > p {
    max-width: 540px;
    margin: 0 auto 28px;
}

.cta-form {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d5ddd0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6e9660;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cta-button {
    display: inline-block;
    width: 100%;
    padding: 15px 48px;
    border: none;
    border-radius: 30px;
    background: #477044;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background: #3a5c38;
}

.form-message {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #e9f1df;
    color: #477044;
    font-size: 14px;
    text-align: center;
}

.form-message.is-visible {
    display: block;
}

/* Footer */
.site-footer {
    padding: 30px 35px;
    background: #333;
    color: #bbb;
    font-size: 12px;
    line-height: 1.7;
}

.site-footer strong {
    color: #ffffff;
}

@media (max-width: 600px) {
    .hero {
        min-height: 470px;
    }

    .hero-content {
        padding: 55px 25px 35px;
    }

    h1 {
        font-size: 29px;
    }

    h2 {
        font-size: 25px;
    }

    .section {
        padding: 45px 24px;
    }

    .card-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .intro-image {
        height: 300px;
    }

    .full-image {
        height: 280px;
    }

    .two-column img {
        height: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
   /* Footer */
        .site-footer {
            background: #1a3328;
            color: #a8b8af;
        }
        .site-footer__inner {
            max-width: 700px;
            margin: 0 auto;
            padding: 28px 20px 32px;
            text-align: center;
        }
        .site-footer__nav {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 8px 0;
            margin-bottom: 16px;
        }
        .site-footer__nav li {
            display: flex;
            align-items: center;
        }
        .site-footer__nav li:not(:last-child)::after {
            content: "";
            width: 1px;
            height: 11px;
            margin: 0 12px;
            background: rgba(255, 255, 255, 0.22);
        }
        .site-footer__nav a {
            color: #d7e3dc;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: -0.02em;
            transition: color 0.2s ease;
        }
        .site-footer__nav a:hover {
            color: #fff;
        }
        .site-footer__copy {
            font-size: 12px;
            line-height: 1.7;
            color: #8a9c92;
            letter-spacing: -0.01em;
        }
        .site-footer__copy strong {
            color: #b8c9bf;
            font-weight: 600;
        }