body {
    background: #000;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    font-weight: 700;
}

.text-yellow {
    color: #ffc107;
}

.bg-black {
    background: black !important;
}

.btn-yellow {
    background: #ffc107 !important;
    color: #000 !important;
    font-weight: 600 !important;
    border: none;
}

.btn-yellow:hover {
    background: #c0ea00 !important;
    color: #000 !important;
}

/* HERO */
.hero {
    min-height: 75vh;
    position: relative;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a6;
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
}

/* Lists */
.choose-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Approach cards */
.approach-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.approach-card {
    background: #111 !important;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: .5rem;
    transition: transform .3s;
    border-radius: 8px;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
}

.cta-yellow {
    background: #ffc107;
}