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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
    background: #F7F3E8;
    color: #2F2A22;
    line-height: 1.6;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px 22px;
}

.hero {
    text-align: center;
    margin-bottom: 34px;
}

.logo-circle {
    width: 118px;
    height: 118px;
    margin: 0 auto 18px;
    border: 8px solid #D7BFA8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    background: #FFFDF7;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

h1 {
    font-size: 46px;
    line-height: 1.1;
    font-weight: 900;
    color: #365A33;
    letter-spacing: -0.04em;
}

.tagline {
    margin-top: 12px;
    font-size: 22px;
    color: #6E665C;
    font-weight: 500;
}

.hero-image {
    width: 100%;
    max-width: 330px;
    display: block;
    margin: 34px auto 0;
    border-radius: 34px;
    box-shadow: 0 22px 48px rgba(0,0,0,0.20);
}

.card {
    background: #FFFDF7;
    border-radius: 28px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.card h2,
.feature-card h2 {
    margin-bottom: 10px;
    color: #365A33;
    font-size: 25px;
    line-height: 1.2;
}

.card p,
.feature-card p {
    font-size: 17px;
    color: #5E574E;
}

.intro {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 28px 0;
}

.feature-card {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 28px;
    align-items: center;
    background: #FFFDF7;
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.feature-card img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.links-card {
    text-align: center;
}

.button-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.button {
    display: inline-block;
    padding: 14px 22px;
    background: #365A33;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    transition: 0.2s;
}

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

.footer {
    margin-top: 46px;
    text-align: center;
    color: #7A7167;
    font-size: 14px;
}

a {
    color: #365A33;
}

@media (max-width: 720px) {
    .container {
        padding: 30px 18px;
    }

    h1 {
        font-size: 40px;
    }

    .tagline {
        font-size: 19px;
    }

    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-card img {
        max-width: 300px;
        margin: 0 auto;
    }

    .card {
        padding: 24px;
    }
}
