body {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.hero {
    /* Remove old gradient background */
    background: url('images/header-bg.jpg') center center/cover no-repeat;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Black overlay with 60% opacity */
    z-index: 1;
    border-radius: inherit;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.section-title {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 2rem;
    color: #0d6efd;
}

.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.step {
    background: #fff;
    border-radius: 12px;
    padding: 18px 24px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
}

.cta-btn {
    background: linear-gradient(90deg, #0d6efd 60%, #6c63ff 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 14px 36px;
    font-size: 1.2rem;
    transition: background 0.2s;
    text-decoration: none;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #6c63ff 60%, #0d6efd 100%);
}

.contact-info {
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .hero {
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0;
        border-radius: 0 0 24px 24px;
    }
}

@media (min-width: 768px) {
    .hero {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0;
        border-radius: 0 0 40px 40px;
    }
}
