/* ==================== Fonts ==================== */
@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNextLTArabic-Regular-2.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNextLTArabic-Medium-2.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNextLTArabic-Bold-2.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNextLTArabic-Black-2.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNEXTLTARABIC-LIGHT-1.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* ==================== Root Variables ==================== */
:root {
    --primary-color: #005482;
    --secondary-color: #00A859;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
}

/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DIN Next LT Arabic', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==================== Top Ads Banner ==================== */
.top-ads-banner {
    background-color: #000000;
    color: var(--white);
    padding: 25px 0;
    position: relative;
    overflow: visible;
}

.black-friday-badge {
    position: absolute;
    left: 60px;
    top: 18px;
    z-index: 10;
    max-width: 110px;
}

.black-friday-badge img {
    width: 100%;
    height: auto;
    display: block;
}

.ads-text {
    text-align: center;
    padding: 0 15px;
}

.ads-text p {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    display: inline;
}

.ads-text .text-white {
    color: #FFFFFF;
    margin-left: 5px;
}

.ads-text .text-red {
    color: #FF0000;
    margin-right: 5px;
}

/* ==================== Header ==================== */
.header {
    background-color: var(--white);
    padding: 15px 0;
    padding-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-label {
    font-size: 14px;
    color: var(--text-light);
}

/* ==================== Hero Section ==================== */
.hero-section {
    position: relative;
    padding: 60px 0 80px;
    min-height: 650px;
    background-color: #ffffff;
}

.hero-section .container {
    position: relative;
}

.hero-main-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 20px;
    line-height: 1.4;
}

.hero-main-subtitle {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-image-background {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    max-width: 700px;
    height: 70%;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 480px;
    display: block;
}

/* ==================== Hero Form Card ==================== */
.hero-form-card {
    background: var(--white);
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
    max-width: 450px;
    margin: 0 auto;
}

.form-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: center;
}

.form-card-discount {
    font-size: 32px;
    font-weight: 900;
    color: #FF0000;
    margin-bottom: 25px;
    text-align: center;
}

.form-timer {
    font-size: 13px;
    color: #FF0000;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: 600;
}

.timer-text {
    font-weight: 700;
}

/* ==================== Registration Form ==================== */
.registration-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'DIN Next LT Arabic', Arial, sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 84, 130, 0.15);
}

.form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'DIN Next LT Arabic', Arial, sans-serif;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 84, 130, 0.15);
}

.form-input-custom {
    border: 2px solid var(--primary-color) !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
    color: #999 !important;
    background-color: var(--white) !important;
}

.form-input-custom:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 84, 130, 0.1) !important;
    color: var(--text-dark) !important;
}

.form-input-custom::placeholder {
    color: #ccc;
    font-weight: 400;
}

.form-select-custom {
    border: 2px solid var(--primary-color) !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
    color: #999 !important;
    background-color: var(--white) !important;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23005482' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 40px;
}

.form-select-custom:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 84, 130, 0.1) !important;
    color: var(--text-dark) !important;
}

.input-group-custom {
    position: relative;
}

.input-group-custom .form-control {
    padding-left: 50px !important;
}

.flag-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

.flag-icon::after {
    content: '▼';
    font-size: 10px;
    color: var(--primary-color);
}

.input-group {
    position: relative;
}

.input-group .form-control {
    padding-left: 50px;
}

.input-group-text {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    z-index: 10;
    padding: 0;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background-color: #008f4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 89, 0.3);
}

.btn-submit i {
    font-size: 20px;
}

.btn-hero-submit {
    background: linear-gradient(135deg, #00A859 0%, #008f4a 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.3);
}

.btn-hero-submit:hover {
    background: linear-gradient(135deg, #008f4a 0%, #00A859 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.4);
}

/* ==================== WhatsApp Float Button ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 1;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ==================== Features Section ==================== */
.features-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.feature-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

.feature-icon {
    width: 320px;
    height: 160px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8F8F8;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    font-weight: 500;
}

/* ==================== Programs Section ==================== */
.programs-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.program-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 84, 130, 0.12);
    height: 100%;
    transition: all 0.3s ease;
    max-width: 420px;
    margin: 0 auto;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 84, 130, 0.15);
}

.program-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.program-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.program-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.9;
    text-align: justify;
    font-weight: 600;
}

/* ==================== Accreditation Section ==================== */
.accreditation-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.certified-badge {
    text-align: center;
    margin-bottom: -50px;
}

.certified-badge img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.accreditation-gray-bg {
    background: #F2F2F2;
    padding: 40px 0;
    margin-bottom: -150px;
}

.accreditation-title-section {
    text-align: right;
    padding: 20px 0;
}

.accreditation-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.accreditation-subtitle {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.accreditation-logos-box-wrapper {
    position: relative;
    z-index: 10;
}

.accreditation-logos-box {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 6px 25px rgba(0, 84, 130, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    width: 579px;
    height: 367px;
    margin: 0 auto;
}

.logo-item {
    flex: 1;
    text-align: center;
}

.accreditation-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.accreditation-description {
    text-align: right;
    margin-top: 120px;
}

.accreditation-description p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 700;
}

/* ==================== FAQ Section ==================== */
.faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.faq-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.accordion {
    max-width: 1006px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 84, 130, 0.15);
}

.accordion-item {
    background: linear-gradient(90deg, #005482 0%, rgba(0, 84, 130, 0) 100%);
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    background: transparent;
    color: #005482;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 30px;
    border: none;
    font-family: 'DIN Next LT Arabic', Arial, sans-serif;
    text-align: right;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #005482;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    margin-right: auto;
    margin-left: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFB800'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.2);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFB800'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.2) rotate(180deg);
}

.accordion-body {
    padding: 20px 30px;
    font-size: 16px;
    color: #005482;
    line-height: 1.8;
    background: transparent;
    font-weight: 500;
}

/* ==================== Contact Form Section ==================== */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 84, 130, 0.15);
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.contact-discount {
    font-size: 38px;
    font-weight: 600;
    color: #FF0000;
    text-align: center;
    margin-bottom: 40px;
}

.form-note-contact {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}

/* ==================== Footer ==================== */
.footer {
    background-color: #E5F6FF;
    color: var(--text-dark);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-contact {
    text-align: right;
    flex: 1;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: #FFB800;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--primary-color);
    direction: rtl;
}

.footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-logo {
    flex: 1;
    text-align: left;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--white);
}

/* ==================== Responsive Design ==================== */

/* Tablet & Medium Screens */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .accreditation-logos-box {
        width: auto;
        max-width: 450px;
    }
    
    .program-card {
        max-width: 100%;
    }
    
    .feature-icon {
        width: 280px;
        height: 140px;
    }
}

@media (max-width: 991px) {
    .container {
        padding: 0 15px;
    }
    
    .top-ads-banner {
        padding: 15px 0;
    }
    
    .ads-text p {
        font-size: 16px;
    }
    
    .black-friday-badge {
        max-width: 120px;
        left: 20px;
        top: -15px;
    }
    
    .hero-main-title {
        font-size: 30px;
    }
    
    .hero-main-subtitle {
        font-size: 19px;
    }
    
    .hero-image-container {
        min-height: 350px;
    }
    
    .hero-image-wrapper img {
        max-width: 420px;
    }
    
    .hero-image-background {
        max-width: 450px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .registration-form {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .program-card {
        margin-bottom: 20px;
    }
    
    .accreditation-text {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .top-ads-banner {
        padding: 12px 0;
    }
    
    .ads-text p {
        font-size: 13px;
    }
    
    .black-friday-badge {
        max-width: 100px;
        left: 15px;
        top: -12px;
    }
    
    .header-contact {
        align-items: flex-start;
    }
    
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-main-title {
        font-size: 24px;
    }
    
    .hero-main-subtitle {
        font-size: 17px;
    }
    
    .hero-image-container {
        min-height: 320px;
        margin-bottom: 30px;
    }
    
    .hero-image-wrapper img {
        max-width: 360px;
    }
    
    .hero-image-background {
        max-width: 400px;
        height: 65%;
    }
    
    .hero-form-card {
        padding: 25px;
    }
    
    .form-card-discount {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .discount-text {
        font-size: 36px;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info p {
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    /* Programs Section */
    .program-card {
        max-width: 100%;
        padding: 40px 25px;
    }
    
    .program-logo {
        width: 130px;
        height: 130px;
    }
    
    /* Accreditation Section */
    .certified-badge img {
        width: 130px;
        height: 130px;
    }
    
    .accreditation-main-title {
        font-size: 36px;
    }
    
    .accreditation-subtitle {
        font-size: 24px;
    }
    
    .accreditation-logos-box {
        width: auto;
        max-width: 500px;
        height: auto;
        padding: 35px 25px;
    }
    
    .accreditation-logo {
        max-width: 150px;
    }
    
    .accreditation-description {
        margin-top: 60px;
    }
    
    /* FAQ Section */
    .accordion {
        padding: 25px;
    }
    
    .accordion-button {
        font-size: 17px;
        padding: 18px 28px;
    }
    
    .accordion-body {
        font-size: 15px;
    }
    
    /* Contact Section */
    .contact-title {
        font-size: 32px;
    }
    
    .contact-discount {
        font-size: 34px;
    }
    
    .contact-form-wrapper {
        max-width: 550px;
    }
    
    /* Footer */
    .footer-contact {
        text-align: right;
    }
    
    .footer-title {
        font-size: 22px;
    }
    
    .footer-contact-item {
        font-size: 15px;
    }
    
    .footer-logo img {
        height: 70px;
    }
}

@media (max-width: 575px) {
    .top-ads-banner {
        padding: 10px 0;
    }
    
    .ads-text p {
        font-size: 9px;
    }
    
    .black-friday-badge {
        max-width: 75px;
        left: 10px;
        top: -10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .header-number {
        font-size: 16px;
    }
    
    .header-label {
        font-size: 12px;
    }
    
    .hero-section {
        padding: 30px 0 50px;
    }
    
    .hero-main-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .hero-main-subtitle {
        font-size: 15px;
    }
    
    .hero-image-container {
        min-height: 280px;
        margin-bottom: 25px;
    }
    
    .hero-image-wrapper img {
        max-width: 320px;
    }
    
    .hero-image-background {
        max-width: 350px;
        height: 60%;
    }
    
    .hero-form-card {
        padding: 20px;
    }
    
    .form-card-title {
        font-size: 17px;
    }
    
    .form-card-discount {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .btn-hero-submit {
        font-size: 17px;
        padding: 14px 20px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
    
    .registration-form {
        padding: 20px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .program-title {
        font-size: 18px;
    }
    
    .accordion-button {
        font-size: 14px;
        padding: 15px 20px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Programs Section */
    .program-logo {
        width: 110px;
        height: 110px;
    }
    
    .program-logo img {
        width: 100%;
        height: 100%;
    }
    
    .program-title {
        font-size: 18px;
    }
    
    .program-description {
        font-size: 14px;
    }
    
    .program-card {
        padding: 35px 20px;
    }
    
    /* Accreditation Section */
    .certified-badge img {
        width: 110px;
        height: 110px;
    }
    
    .accreditation-main-title {
        font-size: 30px;
    }
    
    .accreditation-subtitle {
        font-size: 20px;
    }
    
    .accreditation-logos-box {
        width: auto;
        max-width: 100%;
        padding: 25px 20px;
        gap: 25px;
    }
    
    .accreditation-logo {
        max-width: 130px;
    }
    
    .accreditation-description {
        margin-top: 50px;
    }
    
    .accreditation-description p {
        font-size: 14px;
    }
    
    /* FAQ Section */
    .faq-section .section-title {
        font-size: 28px;
    }
    
    .accordion {
        padding: 20px;
    }
    
    .accordion-button {
        font-size: 15px;
        padding: 16px 22px;
    }
    
    .accordion-body {
        font-size: 14px;
        padding: 16px 22px;
    }
    
    /* Contact Section */
    .contact-form-wrapper {
        padding: 35px 20px;
        max-width: 100%;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-discount {
        font-size: 32px;
    }
    
    /* Footer */
    .footer-title {
        font-size: 20px;
    }
    
    .footer-contact-item {
        font-size: 14px;
    }
    
    .footer-icon {
        width: 22px;
        height: 22px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .feature-icon {
        width: 240px;
        height: 130px;
    }
    
    .feature-icon img {
        width: 100px;
        height: 100px;
    }
}

/* Extra Small Screens */
@media (max-width: 400px) {
    .container {
        padding: 0 8px;
    }
    
    .accreditation-logos-box {
        padding: 20px 15px;
    }
    
    .program-card {
        padding: 30px 15px;
    }
    
    .accordion {
        padding: 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 15px;
    }
    
    .feature-icon {
        width: 220px;
        height: 120px;
    }
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.program-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ==================== Smooth Scrolling ==================== */
html {
    scroll-behavior: smooth;
}

/* ==================== Selection ==================== */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}
