:root {
    --green: #00c30f;
    --green-dark: #009b0c;
    --green-light: #e9fbe9;
    --green-lighter: #f5fff5;

    --text: #202520;
    --text-light: #697169;

    --background: #f8faf8;
    --white: #ffffff;
    --border: #dfe6df;

    --max-width: 1050px;
}


/* -------------------- */
/* Base */
/* -------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.container {
    width: min(100% - 40px, var(--max-width));
    margin: 0 auto;
}


/* -------------------- */
/* Hero */
/* -------------------- */

.hero {
    background:
        linear-gradient(
            135deg,
            var(--green-lighter),
            var(--white)
        );
    padding: 70px 0;
    border-bottom: 1px solid var(--border);
}

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

.hero-photo {
    flex: 0 0 300px;
}

.hero-photo img {
    width: 300px;
    max-height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.hero-text {
    max-width: 600px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--green-dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

h1 {
    margin: 0 0 20px;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
}

.intro {
    margin: 0 0 30px;
    font-size: 1.2rem;
    color: var(--text-light);
}


/* -------------------- */
/* Buttons */
/* -------------------- */

.button {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 8px;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}


/* -------------------- */
/* Sections */
/* -------------------- */

.section {
    padding: 75px 0;
}

.section-light {
    background: var(--green-light);
}

h2 {
    margin: 0 0 40px;
    font-size: 2rem;
    line-height: 1.2;
}


/* -------------------- */
/* Services table */
/* -------------------- */

.services-table-wrapper {
    overflow-x: auto;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.services-table th,
.services-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.services-table th {
    background: var(--green);
    color: var(--white);
    font-size: 1rem;
}

.services-table tr:last-child td {
    border-bottom: none;
}

.services-table td:not(:first-child),
.services-table th:not(:first-child) {
    text-align: center;
    white-space: nowrap;
}

.services-table td strong {
    display: block;
}

.services-table td span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.services-table .highlight td {
    background: var(--green-lighter);
}

.services-table del {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: normal;
}


/* -------------------- */
/* Mobile service cards */
/* -------------------- */

.services-cards {
    display: none;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 16px;
}

.service-card h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}

.service-card p {
    margin: 0 0 18px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-card.highlight {
    background: var(--green-lighter);
    border-color: #bcecbc;
}

.prices {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.prices span {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.prices strong {
    white-space: nowrap;
}

.prices del {
    color: var(--text-light);
    margin-left: 5px;
    font-weight: normal;
}


/* -------------------- */
/* Contact */
/* -------------------- */

.contact {
    text-align: center;
}

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

.contact p {
    margin: 0 auto 25px;
    max-width: 600px;
    color: var(--text-light);
}


/* -------------------- */
/* About */
/* -------------------- */

.about {
    max-width: 800px;
}

.about h2 {
    margin-bottom: 30px;
}

.about h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.about p {
    margin: 7px 0;
}


/* -------------------- */
/* Footer */
/* -------------------- */

footer {
    padding: 30px 0;
    background: var(--text);
    color: var(--white);
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin: 4px 0;
}

footer a {
    color: var(--white);
}


/* -------------------- */
/* Responsive */
/* -------------------- */

@media (max-width: 700px) {

    .container {
        width: min(100% - 30px, var(--max-width));
    }

    .hero {
        padding: 45px 0 55px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-photo {
        flex: none;
        width: 220px;
    }

    .hero-photo img {
        width: 220px;
        max-height: 300px;
        margin: 0 auto;
        border-radius: 16px;
    }

    .hero-text {
        max-width: 100%;
    }

    h1 {
        font-size: 2.7rem;
    }

    .intro {
        font-size: 1.05rem;
    }

    .section {
        padding: 55px 0;
    }

    h2 {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }

    .services-table-wrapper {
        display: none;
    }

    .services-cards {
        display: block;
    }

    .button {
        padding: 12px 20px;
    }
}