body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f5ee;
    color: #2f2f2f;
}

.hero {
    background: url('../images/hero-background.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

    .hero .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        padding: 40px;
    }

    .hero h1 {
        font-size: 3em;
        margin: 0;
    }

    .hero p {
        font-size: 1.2em;
        margin: 10px 0 20px;
    }

.btn {
    background-color: #2e4f3e;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
}

.about .container {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.about img {
    max-width: 100%;
    width: 400px;
    border-radius: 8px;
}

.about .text {
    flex: 1;
}

.services {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

    .services h2 {
        margin-top: 0;
    }

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100px;
}

.service-box {
    background: #c67c4e;
    color: #fff;
    border-radius: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .service-box h3 {
        border: 1px solid #fff;
        padding: 10px;
        margin: 0;
    }

    .service-box .icons {
        flex-grow: 1;
        display: flex;
        flex-direction: row;
    }

        .service-box .icons div {
            display: flex;
            flex-grow: 1;
            border: 1px solid #fff;
            padding: 10px;
            justify-content: center;
            flex-direction: column;
            width: 33.3333%;
        }

            .service-box .icons div img {
                width: 48px;
                height: 48px;
                margin: 0 auto;
            }

            .service-box .icons div p {
                margin: 10px 0;
            }

.portfolio {
    padding: 60px 20px;
    text-align: center;
}

    .portfolio h2 {
        margin-top: 0;
        margin-bottom: 40px;
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

    .portfolio-grid img {
        width: 100%;
        border-radius: 8px;
    }


.contact {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

    .contact h2 {
        margin-top: 0;
    }

    .contact .contact-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 30px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        min-height: 100px;
    }

    .contact .contact-box {
        color: #c67c4e;
        border-radius: 8px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

        .contact .contact-box .icons {
            flex-grow: 1;
            display: flex;
            flex-direction: row;
        }

            .contact .contact-box .icons .option {
                display: flex;
                flex-grow: 1;
                border-right: 1px solid #c67c4e;
                padding: 10px;
                justify-content: center;
                flex-direction: column;
                width: 33.3333%;
            }

                .contact .contact-box .icons .option:last-child {
                    border: 0;
                }

                .contact .contact-box .icons .option img {
                    max-width: 48px;
                    max-height: 48px;
                    margin: 0 auto;
                    width: auto;
                    height: auto;
                }

                .contact .contact-box .icons .option p {
                    margin: 10px 0;
                }

            .contact .contact-box .icons .social {
                display: flex;
                flex-direction: row;
                width: 100%;
                justify-content: center;
            }

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

@media only screen and (max-width: 600px) {
    .contact .contact-box .icons {
        flex-wrap: wrap;
    }

        .contact .contact-box .icons .option {
            width: 100%;
            border: 0;
            border-bottom: 1px solid #c67c4e;
            padding-top: 30px;
        }
}
