:root {
    --primary-color: #008080;
    --secondary-color: #006666;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    color: white !important;
}

.hero-section p {
    color: white;
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 2.5rem; /* Smaller heading on mobile */
    }
    .hero-section p {
        font-size: 1rem; /* Smaller lead text */
    }
    .hero-section .btn-lg {
        padding: 8px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.step-card {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

/* Responsive section title */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.requirement-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.requirement-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Adjust card content for smaller screens */
@media (max-width: 768px) {
    .step-card h5 {
        font-size: 1.1rem;
    }
    .step-card p {
        font-size: 0.9rem;
    }
}

/* Ensure tables are readable on mobile */
.table th, .table td {
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .table th, .table td {
        font-size: 0.8rem;
    }
}

/* Apply Now section adjustments */
@media (max-width: 576px) {
    #apply-now .container {
        padding: 0 15px;
    }
    #apply-now h2 {
        font-size: 1.5rem;
    }
    #apply-now p {
        font-size: 0.9rem;
    }
}