.hero-wrapper-6bf3dddc {
    padding: 60px 20px;
    background-color: #FAF8F5; /* Minimalist off-white earthy base */
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.hero-wrapper-6bf3dddc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C46747, #D99A5B, #2C3627); /* Terracotta, Ochre, Deep Green subtle top accent */
    z-index: 2;
}

.hero-wrapper-6bf3dddc::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 248, 245, 0.7); /* Default overlay to ensure text readability */
    z-index: 1;
}

.hero-content-6bf3dddc {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-heading-6bf3dddc {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3627;
    margin-bottom: 15px;
    font-family: inherit;
}

.hero-subheading-6bf3dddc {
    font-size: 1.1rem;
    color: #5A5A5A;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 5 Column Grid for Buttons */
.hero-buttons-grid-6bf3dddc {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.hero-btn-6bf3dddc {
    display: inline-block;
    padding: 12px 15px;
    background-color: #FFFFFF;
    color: #2C3627;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #E5E0D8;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.hero-btn-6bf3dddc:hover {
    border-color: #C46747;
    color: #C46747;
    background-color: #FFFFFF;
}

.hero-travelpayouts-wrapper-6bf3dddc {
    background: #FFFFFF;
    border: 1px solid #E5E0D8;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.tp-placeholder-6bf3dddc {
    padding: 40px;
    border: 2px dashed #D99A5B;
    color: #D99A5B;
    font-weight: bold;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .hero-buttons-grid-6bf3dddc {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-buttons-grid-6bf3dddc a:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .hero-buttons-grid-6bf3dddc {
        grid-template-columns: 1fr;
    }
    .hero-buttons-grid-6bf3dddc a:last-child {
        grid-column: span 1;
    }
}