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

body {
    font-family: serif;
    background-color: #ffffff;
    color: #35313C;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 600;
}

.logo-icon {
    color: #2d7a4f;
    font-size: 32px;
    margin-right: 5px;
}

.logo-text {
    color: #2d7a4f;
}

.logo-text-light {
    color: #5fa77f;
    font-weight: 400;
}

.logo-suffix {
    color: #2d7a4f;
    font-size: 14px;
    vertical-align: super;
}

.cta-button {
    background-color: #1a6b47;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #145239;
}

main {
    text-align: center;
}

h1 {
    font-size: 40px;
    /* color: #35313C; */
    font-weight: 700;
    margin-bottom: 15px;
}

h2 {
    font-size: 72px;
    /* color: #333; */
    font-weight: 700;
    margin-bottom: 30px;
}

.description {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 18px;
    font-weight: 400;
    /* color: #555; */
    line-height: 1.8;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    margin-top: 50px;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.footer-logo-icon {
    color: #2d7a4f;
    font-size: 24px;
    margin-right: 5px;
    width: 200px;
}

.footer-logo-text {
    color: #2d7a4f;
}

.footer-logo-text-light {
    color: #5fa77f;
    font-weight: 400;
}

.footer-logo-suffix {
    color: #2d7a4f;
    font-size: 11px;
    vertical-align: super;
}

.copyright {
    font-size: 14px;
    font-weight: 400;
    /* color: #666; */
    margin-top: 10px;
}

.copyright.desktop {
    display: block;
}

.copyright.mobile {
    display: none;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    /* color: #555; */
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.contact-item a {
    color: #35313C;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2d7a4f;
}

/* Tablet landscape - 1024px */
@media (max-width: 1024px) {
    h2 {
        font-size: 42px;
    }

    .description {
        font-size: 15px;
        max-width: 800px;
    }

    .contact-info {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .copyright.desktop {
        display: none;
    }

    .copyright.mobile {
        display: block;
    }
}

/* Tablet portrait - 768px */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    header {
        margin-bottom: 30px;
    }

    .cta-button span {
        display: none;
    }

    h1 {
        font-size: 16px;
    }

    h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .footer-content {
        gap: 25px;
        align-items: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .logo img {
        width: 200px;
    }
}

/* Mobile - 390px */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    header {
        gap: 15px;
        align-items: flex-start;
    }

    .logo {
        font-size: 24px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 13px;
    }

    h1 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-image {
        border-radius: 5px;
    }

    footer {
        margin-top: 30px;
        padding: 20px 0;
    }

    .footer-logo {
        font-size: 18px;
    }

    .footer-logo-icon {
        font-size: 22px;
    }

    .copyright {
        font-size: 11px;
        margin-top: 8px;
    }

    .contact-info {
        font-size: 12px;
        gap: 8px;
    }

    .contact-item {
        gap: 5px;
    }
}