.bega-hero-a803957e {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding: 60px 0;
    overflow: hidden;
    background-color: #ffffff;
}

.bega-container-a803957e {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.bega-subtitle-a803957e {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #bfa36b;
    margin-bottom: 20px;
}

.bega-title-a803957e {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 25px;
    margin-top: 0;
}

.bega-title-a803957e .highlight-a803957e {
    font-weight: 600;
}

.bega-desc-a803957e {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 35px;
}

/* Buttons */
.bega-btn-group-a803957e {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.bega-btn-a803957e {
    padding: 15px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.bega-btn-primary-a803957e {
    background-color: #E6BF70;
    color: #111111;
}

.bega-btn-primary-a803957e:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
}

.bega-btn-secondary-a803957e {
    border: 2px solid #111111;
    color: #111111;
    background: transparent;
}

.bega-btn-secondary-a803957e:hover {
    background-color: #111111;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Counters Grid */
.bega-stats-grid-a803957e {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bega-stat-item-a803957e {
    display: flex;
    flex-direction: column;
}

.stat-number-a803957e {
    font-size: 32px;
    font-weight: 600;
    color: #E6BF70;
}

.stat-label-a803957e {
    font-size: 11px;
    color: #888888;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Right side Overlapping circles & animations */
.bega-right-col-a803957e {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bega-visual-scene-a803957e {
    position: relative;
    width: 420px;
    height: 420px;
}

/* Static base circular layouts */
.bega-bubble-a803957e {
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.bega-main-bubble-a803957e {
    width: 320px;
    height: 320px;
    top: 30px;
    left: 20px;
    z-index: 5;
    animation: floatMain_a803957e 6s ease-in-out infinite alternate;
}

.bega-main-bubble-a803957e img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bega-inset-bubble-a803957e {
    width: 160px;
    height: 160px;
    bottom: 20px;
    left: 0px;
    z-index: 10;
    border: 6px solid #ffffff;
    animation: floatInset_a803957e 5s ease-in-out infinite alternate;
}

.bega-inset-bubble-a803957e img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative purely structural circles */
.bega-deco-circle-a803957e {
    border-radius: 50%;
    position: absolute;
}

.bega-deco-yellow-a803957e {
    width: 120px;
    height: 120px;
    background-color: #E6BF70;
    top: 50px;
    right: 20px;
    z-index: 2;
    opacity: 0.9;
    animation: floatDecoYellow_a803957e 7s ease-in-out infinite alternate;
}

.bega-deco-grey-a803957e {
    width: 80px;
    height: 80px;
    background-color: #f0f0f0;
    bottom: 110px;
    right: 10px;
    z-index: 1;
    animation: floatDecoGrey_a803957e 8s ease-in-out infinite alternate;
}

/* CSS Keyframe Animations */
@keyframes floatMain_a803957e {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes floatInset_a803957e {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(10px) scale(1.03); }
}

@keyframes floatDecoYellow_a803957e {
    0% { transform: translate(0px, 0px); }
    100% { transform: translate(15px, -8px); }
}

@keyframes floatDecoGrey_a803957e {
    0% { transform: translate(0px, 0px); }
    100% { transform: translate(-10px, 12px); }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .bega-container-a803957e {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .bega-btn-group-a803957e {
        justify-content: center;
    }
    .bega-stats-grid-a803957e {
        justify-content: center;
    }
    .bega-right-col-a803957e {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .bega-title-a803957e {
        font-size: 36px;
    }
    .bega-stats-grid-a803957e {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bega-visual-scene-a803957e {
        width: 320px;
        height: 320px;
    }
    .bega-main-bubble-a803957e {
        width: 240px;
        height: 240px;
    }
    .bega-inset-bubble-a803957e {
        width: 120px;
        height: 120px;
    }
}
