.hero-section.hero-ce7a489e {
    padding: 60px 20px;
    font-family: sans-serif;
    border-radius: 20px;
}

.hero-ce7a489e .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-ce7a489e .hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-ce7a489e .hero-badge {
    display: inline-block;
    background: #F59E0B;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-ce7a489e .hero-heading {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-ce7a489e .hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-ce7a489e .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-ce7a489e .btn-primary,
.hero-ce7a489e .btn-secondary {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-ce7a489e .btn-primary {
    background: #F59E0B;
    color: #fff;
}

.hero-ce7a489e .btn-primary:hover {
    background: #d97706;
}

.hero-ce7a489e .btn-secondary {
    background: #fff;
    color: #0B3D91;
    border: 2px solid #0B3D91;
}

.hero-ce7a489e .btn-secondary:hover {
    background: #0B3D91;
    color: #fff;
}

.hero-ce7a489e .hero-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.hero-ce7a489e .hero-image img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hero-ce7a489e .hero-container {
        flex-direction: column;
    }
    .hero-ce7a489e .hero-image {
        text-align: center;
    }
    .hero-ce7a489e .hero-heading {
        font-size: 32px;
    }
}