body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f1ea;
    margin: 0;
    padding: 0;
}

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

.container {
    padding: 40px;
    text-align: center;
}

.order-button{
    background-color: #3d6b35;
    color: white;
    padding: 14px 28px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.order-button:hover {
    background-color: #2f5229;
}

.card {
    background: white;
    max-width: 520px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
}

.form {
    background: white;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.form label {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
    font-weight: bold;
}

.form input, .form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

.form textarea{
    resize: vertical;
}

.link {
    display: inline-block;
    margin-top: 18px;
    color: #3d6b35;
    text-decoration: none;
    font-weight: bold;
}

.logo {
    max-width: 420px;
    width: 90%;
    display: block;
    margin: 20px auto;
    background-color: transparent;
}

header {
    display: none;
}

img {
    background: transparent;
}

.site-header {
    background: #f4f1e8;
    border-bottom: 1px solid #d8d2c4;
    padding: 14px 0;
}

.nav-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f1f1f;
}

.nav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #2f5d2f;
    font-weight: 600;
}

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

.hero-section {
    background: linear-gradient(to bottom, #f7f4ec, #eeeadf);
    padding: 50px 20px 60px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 360px;
    width: 100%;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2f5d2f;
    font-weight: 600;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1f1f1f;
}

.hero-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 24px;
    color: #444;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.secondary-link {
    color: #2f5d2f;
    font-weight: 600;
    text-decoration: none;
}

.secondary-link:hover {
    text-decoration: underline;
}

.info-section {
    padding: 60px 20px;
}

.light-section {
    background: #ffffff;
}

.green-section {
    background: #eef5eb;
}

.info-section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 18px;
    color: #1f1f1f;
}

.section-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.feature-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.feature-card,
.step-card {
    background: #ffffff;
    border: 1px solid #ddd7c9;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-card h3,
.step-card h3 {
    margin-bottom: 10px;
    color: #2f5d2f;
}

.feature-card p,
.step-card p {
    color: #444;
    line-height: 1.6;
}

.step-number {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #3f7a3f;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bottom-cta {
    text-align: center;
    margin-top: 35px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: #3f7a3f;
    margin: 14px auto 30px;
    border-radius: 2px;
}

.order-button {
    background: #3f7a3f;
    transition: all 0.2s ease;
}

.order-button:hover {
    background: #2f5d2f;
    transform: translateY(-2px);
}

.info-section {
    padding: 50px 20px;
}

@media (max-width: 768px) {
    .brand-name {
        width: 100%;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-text,
    .section-text {
        font-size: 16px;
    }
}