html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    padding: 2rem;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
}

.carousel-caption h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.btn-danger {
    background-color: #8B0000;
    border-color: #8B0000;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.btn-danger:hover {
    background-color: #A52A2A;
    border-color: #A52A2A;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.key-features ul {
    padding-left: 1.5rem;
}

.key-features li {
    margin-bottom: 1rem;
}

.career-prospects ul {
    padding-left: 1.5rem;
}

.career-prospects li {
    margin-bottom: 1rem;
}

.faq-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 2rem;
}

.faq-section p {
    margin-bottom: 0.5rem;
}

.content-section {
    padding: 3rem 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-caption h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn-danger {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .content-section {
        padding: 1.5rem 0;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .key-features ul, .career-prospects ul {
        padding-left: 1rem;
    }
    
    .faq-section {
        padding: 1rem 0;
    }
    
    .content-section {
        padding: 1rem 0;
    }
}