/* --- DT Offer Hero Styles --- */

.dt-offer-hero-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Main Container with Background */
.dtoh-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px; /* Matches the rounded look */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensures it feels like a hero section */
    padding: 80px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Dark Overlay */
.dtoh-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #000;
    z-index: 1;
}

/* Content */
.dtoh-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

/* Typography */
.dtoh-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.dtoh-headline {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: inherit;
}

.dtoh-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Button */
.dtoh-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, filter 0.2s;
}

.dtoh-btn:hover {
    transform: translateY(-3px);
    filter: brightness(110%);
}

.dtoh-flags-container {
    display: flex !important;
    flex-direction: row !important; /* Force side-by-side */
    justify-content: center !important; /* Center the row */
    align-items: center !important;
    gap: 15px !important; /* Spacing between flags */
    margin-bottom: 20px !important; /* Space above the title */
    width: 100% !important;
}

.dtoh-flag-wrap {
    display: inline-block !important;
    line-height: 1 !important;
}

.dtoh-flag-wrap .fi {
    font-size: 2rem !important; /* Adjust size of flags here */
    border-radius: 4px !important; /* Optional: slight rounding for a modern look */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important; /* Make them pop against the background */
}

/* Responsive */
@media (max-width: 768px) {
    .dtoh-wrapper {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .dtoh-headline {
        font-size: 2.5rem;
    }
    
    .dtoh-description {
        font-size: 1rem;
    }
}

.fi {
    border-radius: 2px; /* Optional slight rounding for flag corners */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .dtoh-flag-wrap .fi {
        width: 60px !important;
        height: 45px !important;
    }
}