.hero-banner {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-logo {
    max-height: 280px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.hero-text-wrapper {
    text-align: right;
    position: relative;
}

.hero-text {
    color: #ffffff;
    font-size: 35px;
    margin: 0;
    padding: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: right;
    padding-right: 20px;
}

.home .hero-text-underline {
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    margin: 20px 0 0 auto;
    position: relative;
    right: 0;
    left: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 900px;
}

.hero-text-underline {
    width: 120%;
    height: 4px;
    background-color: #ffffff;
    margin: 20px auto 0;
    position: relative;
    left: calc(-20% + 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-separator {
    height: 10px;
    background-color: #E6E0DA;
    box-shadow: 0 2px 4px rgb(0 0 0 / 50%);
    position: relative;
    z-index: 3;
}

.services-section {
    background: #fff;
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 140px;
    align-items: start;
}

.services-grid .service-item:not(:nth-last-child(-n+2)) {
    padding-bottom: 20px;
    border-bottom: 1px solid black;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    height: 100%;
}

.service-image {
    flex: 0 0 120px;
}

.service-image img {
    width: 100%;
    padding: 6px;
    border: 1px solid #2a1515;
    border-radius: 0;
    height: 160px;
    object-fit: cover;
}

.service-description {
    flex: 1;
}

.service-description p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.about-section {
    background: #E6E0DA;
    padding: 80px 0;
    width: 100%;
    border: 1px solid transparent;
    box-shadow: 0 4px 2px -2px rgb(0 0 0 / 53%);
    margin-bottom: 20px;
}

.about-title {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
    color: #816B63;
}

.about-content {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #816B63;
    margin-bottom: 20px;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6 {
    color: #816B63;
}

.offers-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid;
    box-shadow: 0 4px 2px -2px rgb(0 0 0 / 14%);
    margin-bottom: 20px;
}

.offers-section .container {
    padding: 0 50px;
}

.offers-content {
    margin-top: 30px;
}

.contact-section {
    background: #fff;
    padding: 50px 0 70px 0;
}

.contact-section .section-title {
    color: #816B63 !important;
}

.contact-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.contact-button {
    display: inline-block;
    background: #816B63;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 30px;
    text-decoration: none;
    color: white !important;
    border-radius: 50px;
    padding: 8px 78px;
    box-shadow: 0px 4px 4px 0px #00000040;
    text-shadow: 4px 4px 9px rgba(66, 68, 90, 1);
}

.contact-button:hover {
    background: #6d5a52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 107, 99, 0.3);
    color: #fff;
}

@media (max-width: 1000px) {
    .hero-content {
        padding: 20px !important;
    }

    body.home .hero-text-underline {
        margin: 20px auto 0 auto;
        right: auto;
        left: auto;
    }
}

@media screen and (max-width: 999px) {
    .hero-logo {
        display: none;
    }

    .hero-content-inner {
        display: block;
        text-align: center;
    }

    .hero-text-wrapper {
        text-align: center;
        padding-right: 0;
    }

    .hero-text {
        font-size: 35px;
        text-align: center;
        letter-spacing: 3px;
    }

    .hero-text-underline {
        width: 110%;
        margin: 20px auto 0;
        right: 0;
        left: -5%;
        height: 4px;
    }
}

@media (max-width: 768px) {
    .services-section .service-image {
        aspect-ratio: 3 / 2;
    } 
    .hero-banner {
        height: 350px;
    }

    .section-title,
    .about-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .services-section,
    .about-section,
    .offers-section,
    .contact-section {
        padding: 50px 0;
    }

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

    .services-grid .service-item:not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 1px solid black;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-image {
        flex: none;
        align-self: stretch;
        width: 100%;
    }
    .services-section .service-image img {
      height: auto !important;
    }
    .about-content p {
        font-size: 15px;
    }

    .contact-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .hero-text {
        font-size: 35px;
        letter-spacing: 3px;
    }

    .hero-text-underline {
        width: 100%;
        left: 0;
        height: 3px;
    }

    body .offers-section .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        flex: none !important;
    }

    .service-image img {
        height: auto !important;
        max-width: 300px;
        width: 100%;
    }

    .section-title,
    .about-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .hero-text {
        font-size: 35px;
        letter-spacing: 3px;
        padding: 0;
        line-height: 1;
    }

    .hero-banner {
        height: 200px;
    }

    .hero-text-underline {
        height: 2px;
        margin: 15px auto 0;
    }
}