* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6, .col-lg-4, .col-lg-6, .col-lg-3, .col-lg-12, .col-md-8, .col-md-7 {
    padding: 0 15px;
}

.col-md-6 { flex: 0 0 50%; }
.col-lg-3 { flex: 0 0 25%; }
.col-lg-4 { flex: 0 0 33.333%; }
.col-lg-6 { flex: 0 0 50%; }
.col-md-7 { flex: 0 0 58.333%; }
.col-md-8 { flex: 0 0 66.666%; }
.col-lg-12, .col-md-12 { flex: 0 0 100%; }

.navbar {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #93c5fd;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.home-slider {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.slider-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.slider-item.active {
    display: flex;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover,
.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.7);
}

.slider-text {
    position: relative;
    z-index: 2;
}

.slider-text h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: bold;
    line-height: 1.2;
}

.slider-text h1 span {
    color: #93c5fd;
}

.slider-text h3 {
    color: #e2e8f0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.btn-white {
    background: white;
    color: #1e40af;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.site-section {
    padding: 80px 0;
}

.bg-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.text-white {
    color: white !important;
}

.heading-39291 {
    font-size: 2.5rem;
    font-weight: bold;
}

.service-29193 {
    background: rgba(255,255,255,0.1);
    padding: 40px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-29193:hover {
    transform: translateY(-5px);
}

.img-wrap {
    display: block;
}

.service-29193 h3 a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.service-29193 p {
    color: #e2e8f0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing_area {
    padding: 80px 0;
    background: #f8fafc;
}

.main_title {
    text-align: center;
    margin-bottom: 60px;
}

.main_title h2 {
    font-size: 1.2rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main_title h1 {
    font-size: 3rem;
    color: #1e40af;
    font-weight: bold;
    margin: 10px 0;
}

.main_title p {
    font-size: 1.2rem;
    color: #64748b;
}

.pricing_item {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}

.pricing_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing_item.active {
    border: 3px solid #3b82f6;
    transform: scale(1.05);
}

.p_title {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 20px;
    font-weight: bold;
}

.p_price {
    font-size: 3rem;
    color: #1e40af;
    font-weight: bold;
    margin-bottom: 30px;
}

.pricing_item ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing_item ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.gradient_btn {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.gradient_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.career-outcomes {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.career-outcomes h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.outcome-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.outcome-card h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.learning-approach {
    padding: 80px 0;
    background: white;
}

.learning-approach h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.learning-approach ul {
    list-style: none;
    margin-top: 20px;
}

.learning-approach ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.learning-approach ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.success-stories {
    padding: 80px 0;
    background: #f8fafc;
}

.success-stories h2 {
    font-size: 2.5rem;
    color: #1e40af;
    text-align: center;
    margin-bottom: 20px;
}

.success-stories p {
    text-align: center;
    margin-bottom: 50px;
    color: #64748b;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-card h4 {
    color: #1e40af;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #64748b;
    font-size: 0.9rem;
}

.industry-tools {
    padding: 80px 0;
    background: white;
}

.industry-tools h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tool-item {
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.tool-item h4 {
    color: #1e40af;
    margin-bottom: 10px;
}

.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 40px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    color: #1e40af;
    margin-bottom: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #3b82f6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mr-3 { margin-right: 1rem; }

.text-center { text-align: center; }
.justify-content-center { justify-content: center; }
.justify-content-start { justify-content: flex-start; }
.align-items-center { align-items: center; }
.no-gutters { margin: 0; }
.no-gutters > [class*="col-"] { padding: 0; }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1e40af;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .slider-text h1 {
        font-size: 2.5rem;
    }

    .col-md-6, .col-lg-4, .col-lg-6, .col-lg-3 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .main_title h1 {
        font-size: 2rem;
    }

    .pricing_item.active {
        transform: none;
    }
}

.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.course-curriculum {
    padding: 80px 0;
    background: white;
}

.course-curriculum h2 {
    font-size: 2.5rem;
    color: #1e40af;
    text-align: center;
    margin-bottom: 20px;
}

.course-curriculum p {
    text-align: center;
    margin-bottom: 50px;
    color: #64748b;
}

.curriculum-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
    border-left: 4px solid #3b82f6;
}

.curriculum-card h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.curriculum-card ul {
    list-style: none;
}

.curriculum-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.curriculum-card ul li:before {
    content: "•";
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.learning-format {
    padding: 80px 0;
    background: #f8fafc;
}

.learning-format h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 40px;
}

.format-option {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.format-option h4 {
    color: #1e40af;
    margin-bottom: 10px;
}

.course-features {
    padding: 80px 0;
    background: white;
}

.course-features h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.course-features p {
    margin-bottom: 50px;
    color: #64748b;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #1e40af;
    margin-bottom: 15px;
}

.enrollment-process {
    padding: 80px 0;
    background: #f8fafc;
}

.enrollment-process h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.enrollment-process p {
    margin-bottom: 50px;
    color: #64748b;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h4 {
    color: #1e40af;
    margin-bottom: 15px;
}

.course-cta {
    padding: 80px 0;
}

.contact-main {
    padding: 80px 0;
    background: white;
}

.contact-info-detailed h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.contact-info-detailed p {
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-item-large {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.contact-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #334155;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-details small {
    color: #64748b;
    font-size: 0.9rem;
}

.office-hours {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    margin-top: 30px;
}

.office-hours h4 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    font-weight: 500;
    color: #334155;
}

.hours-item span:last-child {
    color: #64748b;
}

.contact-form-wrapper {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.contact-form-wrapper p {
    color: #64748b;
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e40af;
    font-weight: 500;
}

.why-contact {
    padding: 80px 0;
    background: #f8fafc;
}

.why-contact h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.why-contact p {
    margin-bottom: 50px;
    color: #64748b;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.faq-section p {
    margin-bottom: 50px;
    color: #64748b;
}

.faq-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #3b82f6;
}

.faq-item h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.col-lg-8 {
    flex: 0 0 66.666%;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-document {
    background: #f8fafc;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.legal-document h2 {
    color: #1e40af;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.legal-document h2:first-of-type {
    margin-top: 20px;
}

.legal-document h3 {
    color: #1e40af;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
}

.legal-document p {
    color: #334155;
    margin-bottom: 15px;
}

.legal-document ul {
    color: #334155;
    margin: 15px 0 15px 20px;
}

.legal-document ul li {
    margin-bottom: 8px;
}

.legal-document strong {
    color: #1e40af;
}

.contact-details {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    margin-top: 20px;
}

.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    margin-top: 70px;
}

.thank-you-card {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.success-icon {
    margin-bottom: 30px;
}

.thank-you-card h1 {
    color: #1e40af;
    font-size: 3rem;
    margin-bottom: 20px;
}

.thank-you-card .lead {
    color: #64748b;
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h3 {
    color: #1e40af;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.step-list {
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin: 0 20px;
}

.step-content h4 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: #64748b;
    margin: 0;
}

.contact-reminder {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
    margin: 40px 0;
}

.contact-reminder h4 {
    color: #1e40af;
    margin-bottom: 15px;
}

.contact-reminder p {
    color: #64748b;
    margin-bottom: 5px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-outline-primary {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.btn-outline-primary:hover {
    background: #1e40af;
    color: white;
}

.while-you-wait {
    padding: 80px 0;
    background: white;
}

.while-you-wait h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.while-you-wait p {
    margin-bottom: 50px;
    color: #64748b;
}

.resource-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    height: 100%;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.resource-card p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .slider-text h1 {
        font-size: 2rem;
    }

    .heading-39291 {
        font-size: 2rem;
    }

    .career-outcomes h2 {
        font-size: 2rem;
    }

    .learning-approach h2,
    .success-stories h2,
    .industry-tools h2,
    .contact-section h2,
    .course-curriculum h2,
    .learning-format h2,
    .course-features h2,
    .enrollment-process h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-document {
        padding: 30px;
    }
    
    .thank-you-card {
        padding: 40px 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-item:nth-child(even) {
        flex-direction: column;
    }
    
    .step-number {
        margin: 0 0 15px 0;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.navbar-scrolled {
    background: rgba(30, 64, 175, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.tooltip {
    position: absolute;
    background: #1e293b;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1001;
    pointer-events: none;
}

.tooltip.show {
    opacity: 1;
}

.tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1e293b;
}
