.emc-hero-section {
    background-color: #0b1c3d;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}
.emc-hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}
.emc-hero-section p {
    font-size: 1.2rem;
    color: #e0e0e0;
}
.emc-hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}
.emc-btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}
.emc-btn-primary {
    background-color: #1a73e8;
    color: #fff;
}
.emc-btn-secondary {
    background-color: #ffffff;
    color: #0b1c3d;
}
.emc-btn:hover {
    opacity: 0.9;
    color: inherit;
}
