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

:root {
    --primary-yellow: #d4e157;
    --dark-brown: #5d4e37;
    --text-dark: #2c2416;
    --text-body: #4a4a4a;
    --bg-light: #f5f5f0;
    --white: #ffffff;
}

body {
    font-family: "Georgia", "Times New Roman", serif;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url("forest.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.4)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.contact-bubble {
    position: absolute;
    right: 5%;
    top: 90%;
    transform: translateY(-50%);
    background: var(--primary-yellow);
    border-radius: 100px 100px 100px 0;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-text {
    text-align: left;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-email {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-phone {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark);
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 8px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

/* Introduction Section */
.intro-section {
    position: relative;
    padding: 80px 0 0;
    background: var(--white);
    display: grid;
    gap: 4rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    margin-bottom: 0;
}

.intro-column {
    position: relative;
}

.yellow-line {
    width: 4px;
    height: 70%;
    background: var(--primary-yellow);
    place-self: center;
}

.section-title {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 15px;
}

.intro-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.intro-list li {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.intro-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark-brown);
    font-weight: bold;
}

.wood-image {
    width: 100%;
    height: 400px;
    background-image: url("log-pile.jpg");
    background-size: cover;
    background-position: center;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefit-row {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.benefit-row:nth-child(odd) {
    direction: rtl;
}

.benefit-image-wrapper {
    position: relative;
}

.circular-image {
    width: 400px;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    clip-path: url(#blob);
}

.benefit-text-wrapper {
    padding: 20px 0;
}

.benefit-title {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0 5rem;
    background: var(--white);
}

.yellow-separator {
    width: 100%;
    height: 4px;
    background: var(--primary-yellow);
    margin-bottom: 60px;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.faq-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-content {
    flex: 1;
}

.faq-question {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.cta-yellow-box {
    background: var(--primary-yellow);
    padding: 50px;
    border-radius: 10px;
}

.cta-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.cta-image-wrapper {
    position: relative;
}

.cta-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.final-cta {
    text-align: center;
    padding: 40px 0;
}

.final-cta-title {
    font-size: 2rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.final-cta-title a {
    color: var(--text-dark);
}

.final-cta-title .thin-text {
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: 5px;
    }

    .contact-bubble {
        right: 3%;
        padding: 25px 35px;
    }

    .intro-grid {
        gap: 40px;
    }

    .benefit-row {
        grid-template-columns: 300px 1fr;
        gap: 50px;
    }

    .circular-image {
        width: 300px;
        height: 300px;
    }

    .cta-content {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .cta-image {
        height: 400px;
    }
}

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

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .contact-bubble {
        display: inline-block;
        margin-bottom: 40px;
        padding: 20px 30px;
        border-radius: 80px 80px 80px 0;
    }

    .contact-label {
        font-size: 0.8rem;
    }

    .contact-email {
        font-size: 0.95rem;
    }

    .contact-phone {
        font-size: 1.1rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .yellow-line {
        display: none;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .wood-image {
        height: 300px;
    }

    .benefit-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .benefit-row:nth-child(odd) {
        direction: ltr;
    }
    .circular-image {
        width: 100%;
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .benefit-title {
        font-size: 1.6rem;
    }

    .benefit-description {
        font-size: 1rem;
    }

    .faq-item {
        gap: 20px;
    }

    .faq-icon {
        width: 50px;
        height: 50px;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-yellow-box {
        padding: 30px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-image {
        height: 300px;
    }

    .final-cta-title {
        font-size: 1.5rem;
    }
}

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

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .contact-bubble {
        padding: 15px 20px;
        border-radius: 60px 60px 60px 0;
    }

    .contact-label {
        font-size: 0.7rem;
    }

    .contact-email {
        font-size: 0.85rem;
    }

    .contact-phone {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .intro-text,
    .intro-list li {
        font-size: 0.95rem;
    }

    .benefit-title {
        font-size: 1.4rem;
    }

    .benefit-description {
        font-size: 0.95rem;
    }

    .circular-image {
        max-width: 280px;
        height: 280px;
    }

    .faq-item {
        flex-direction: column;
        gap: 15px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .cta-yellow-box {
        padding: 20px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-text {
        font-size: 0.95rem;
    }

    .final-cta-title {
        font-size: 1.2rem;
    }
}
