/* ========================================
   VARIABLES
   ======================================== */

:root {
    /* Colors */
    --color-primary: #e30613;
    --color-red-primary: #e30613;
    --color-primary-hover: #c20510;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #666666;
    --color-light-gray: #dcdcdc;
    --color-lighter-gray: #eeeeee;
    --color-gray-text: #777777;
    --color-background: #f6f6f6;
    --color-card-bg: #f5f6f7;
    --color-text-muted: #777777;
    --color-hover-bg: #f0f0f0;
    --section-padding: 40px 0;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    background-color: #F5F5F5;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* For larger screens, make container full width */
@media (min-width: 1200px) {
    .container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

/* Consistent wrapper for all sections */
.section-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* For larger screens, make section wrapper full width */
@media (min-width: 1200px) {
    .section-wrapper {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

/* Reset default margins and padding for consistent alignment */
section {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Consistent section padding */
.features-section,
.about-section,
.programs-section,
.catalog-section,
.why-choose-section,
.course-progression-section,
.graduates-section,
.consultation-section,
.team-section,
.student-reviews-section,
.statistics-section,
.faq-section {
    padding: 40px 0;
    width: 100%;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.section-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    color: var(--color-black);
    font-size: 42px;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.2;
}

.section-title-center {
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray-text);
    margin-bottom: 30px;
    text-align: center;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    width: 100%;
    position: relative;
    background-color: #ffffff;
    z-index: 1000;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Top Bar */
.top-bar {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f6;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    height: 42px;
}

.top-right-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-number {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.fa-search, .fa-bars {
    font-size: 18px;
    cursor: pointer;
    color: #000000;
}

.menu-button {
    background: none;
    border: none;
    font-size: 16px;
    color: #000000;
    cursor: pointer;
    padding: 5px 10px;
}

.nav-menu {
    display: block;
}

.hamburger-menu {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: #000000;
}

/* Main Navbar */
.main-navbar {
    background-color: #f5f5f6;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eeeeee;
}

.nav-menu .nav-list {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-button {
    display: inline-block;
    padding: 4px 15px;
    background-color: #F5F5F6EB;

    border: 1px solid #dcdcdc;
    border-radius: 999px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.primary-button {
    background-color: #e30613;
    color: #ffffff;
    padding: 4px 15px;
    border: none;
}

.primary-button:hover {
    background-color: #c20510;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Remove any gap between header and hero */
.header + .hero-section {
    margin-top: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    width: 100%;
    height: 500px;
    background-image: url('./img/Hero_1920.jpg');
    background-color: #f5f5f6;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 0;
    padding: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* For larger screens, make hero section full width */
@media (min-width: 1200px) {
    .hero-section {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
}

/* For larger screens, make hero container full width */
@media (min-width: 1200px) {
    .hero-section .container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.hero-content {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    max-width: 600px;
    color: #ffffff;
    z-index: 2;
}

.hero-text-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    max-width: 600px;
    color: #ffffff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle {
    display: block;
    color: #e30613;
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 0.5;
    max-width: 100%;
    word-wrap: break-word;
}

.hero-title {
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
    max-width: 100%;
    word-wrap: break-word;
}

.title-line {
    display: block;
}

.hero-description {
    color: #dddddd;
    font-size: 15px;
    margin-top: 15px;
    max-width: 520px;
    line-height: 1.5;
    margin-bottom: 15px;
    word-wrap: break-word;
}

.hero-button {
    background-color: #e30613;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0;
}

.hero-button:hover {
    background-color: #c20510;
}

.form-input {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #dddddd;
    padding: 10px 15px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease;
}

.form-input:focus {
    box-shadow: 0 0 0 2px #e30613;
}

.submit-button {
    background-color: #e30613;
    color: #ffffff;
    height: 40px;
    border-radius: 10px;
    border: none;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c20510;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    background-color: #F5F5F5;
    padding: 40px 0;
    width: 100%;
}

.features-container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* For larger screens, make features container full width */
@media (min-width: 1200px) {
    .features-container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    background-color: #ECEDF0;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    height: 200px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    z-index: 1;
}

.card-text {
    font-size: 13px;
    color: #777777;
    line-height: 1.4;
    margin-top: 8px;
    flex-grow: 1;
    z-index: 1;
}

.card-icon {
    position: absolute;
    top: 60px;
    right: -25px;
    width: 200px;
    height: 200px; 
    background-size: contain;
    background-repeat: no-repeat;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background-color: #F5F5F5;
    padding: 5px 0;
    width: 100%;
}

.about-container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* For larger screens, make about container full width */
@media (min-width: 1200px) {
    .about-container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: stretch;
    height: 100%;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}

.about-text {
    flex: 1;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.about-text h3 {
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.2;
}

.about-text p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.about-button {
    background-color: #e30613;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.about-button:hover {
    background-color: #c20510;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about-media {
    flex: 1;
    height: 100%;
}

.media-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
}

.play-overlay {
    font-size: 180px;
    color: #e30613;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.play-overlay:hover {
    opacity: 1;
}

/* ========================================
   EDUCATIONAL PROGRAMS SECTION
   ======================================== */

.programs-section {
    width: 100%;
    background-color: #F5F5F5;
    padding: 40px 0;
}

.programs-container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* For larger screens, make programs container full width */
@media (min-width: 1200px) {
    .programs-container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.programs-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #000000;
    text-align: left;
    margin-bottom: 20px;
}

.programs-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: stretch;
    height: 100%;
}

/* Program Cards */
.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.program-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.program-card:hover {
    background-color: #e30613;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.program-card:hover .program-code {
    color: #ffffff;
    opacity: 0.8;
}

.program-card:hover .program-title {
    color: #ffffff;
}

.program-card:hover .program-button {
    background-color: #000000;
}

.program-code {
    font-size: 13px;
    color: #999999;
    margin-bottom: 16px;
}

.program-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: auto;
}

.program-button {
    background-color: #e30613;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.program-button:hover {
    background-color: #c20510;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    width: 100%;
    background-color: #ffffff;
    padding: 3px;
}

.footer-container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* For larger screens, make footer container full width */
@media (min-width: 1200px) {
    .footer-container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 80px;
}

.footer-text {
    display: flex;
    flex-direction: column;
}

.footer-subtitle {
    font-size: 12px;
    color: #777777;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-title {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 4px;
}

.footer-location {
    font-size: 18px;
    color: #e30613;
    font-weight: normal;
}

.contacts-card {
    background-color: #f1f2f3;
    border-radius: 20px;
    padding: 24px;
    width: 520px;
    display: flex;
    flex-direction: column;
}

.contacts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.contacts-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.contact-info {
    font-size: 14px;
    color: #555555;
    text-align: left;
    margin-bottom: 20px;
}

.contact-info div {
    margin-bottom: 5px;
}

.consult-button {
    background-color: #e30613;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    cursor: pointer;
    white-space: nowrap;
}

.social-buttons {
    display: flex;
    justify-content: flex-start;
}

.social-button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    cursor: pointer;
    color: #ffffff;
    font-size: 18px;
}

.social-button:last-child {
    margin-right: 0;
}

.footer-bottom {
    margin-top: 20px;
}

.footer-copyright {
    font-size: 12px;
    color: #888888;
    text-align: left;
}

/* Responsive styles */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-left {
        margin-bottom: 20px;
    }
    
    .contacts-card {
        width: 100%;
        max-width: 560px;
    }
    
    .contacts-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contacts-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contacts-title {
        margin-bottom: 15px;
    }
    
    .consult-button {
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .social-buttons {
        justify-content: flex-start;
        margin-top: 15px;
    }
}




@media (max-width: 576px) {
    .logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 0;
        padding-left: 20px;
    }
    
    .logo {
        margin-top: 0;
    }
    
    .top-right-section {
        display: flex;
        align-items:flex-start;
        justify-content: space-between;
        width: 100%;
        padding: 1px 0;
        border-top: 1px solid #ddd;
    }
    
    /* Phone number on the left */
    .top-right-section .phone-number {
        order: 1;
        margin-right: auto;
    }
    
    /* Group search and menu button on the right */
    .top-right-section .menu-button {
        order: 2;
        white-space: nowrap;
    }
    
    .top-right-section .fa-search {
        order: 3;
        margin-left: 8px;
    }
    
    .top-right-section .hamburger-menu {
        order: 4;
        align-self: center;
    }
    
    /* Make sure the elements take proper space */
    .top-right-section > * {
        flex-shrink: 0;
    }
}

/* Footer responsive styles */
@media (max-width: 900px) {
    .footer-container {
        max-width: 1300px;
        margin: 0 auto !important;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-left {
        margin-bottom: 20px;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
    
    .footer-logo {
        display: block;
        margin: 0;
        align-self: flex-start;
    }
    
    .contacts-card {
        width: 100%;
        max-width: 560px;
    }
    
    .contacts-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contacts-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contacts-title {
        margin-bottom: 15px;
    }
    
    .consult-button {
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .social-buttons {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        max-width: 1300px;
        margin: 0 auto !important;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-logo {
        display: block;
        margin: 0;
        align-self: flex-start;
    }
    
    .contacts-content {
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .consult-button {
        align-self: flex-start;
    }
}

/* Promo Card */
.promo-card {
    width: 100%;
    max-width: 100%; 
    margin: 0; 
}

.promo-overlay {
  height: 550px;
}


.img img{
    padding: 0;
    width: 450px;
    height: 300px;
    
}
.img-text{
    width: 450px;
    height: 270px;
    background-color: red;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 100;
    border-radius: 16px;
    margin-top: -29px;
}
.img-text h1{
    text-align: center;
    font-weight: 600;
    line-height:30px;
    letter-spacing: 1px;
    font-size: 24px;
    color: #ffffff;
}
.promo-content {
    flex: 1;
    background-color: #e30613;
    color: #ffffff;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-button {
    background-color: #000000 !important;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.promo-description {
    font-size: 16px;
    text-align: center;
    line-height: 1;
    color: white;
    margin: 0 0 15px 0;
}

.promo-button:hover {
    background-color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Add responsive styles for promo card */
@media (max-width: 768px) {
    .promo-overlay {
        height: 550px;
        position: relative;
    }
    
    .img {
        position: relative;
    }
    
    .img img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 300px;
    }
    
    .img-text {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 200px;
        padding: 10px;
        position: absolute;
        top: 300px; /* Position below the image */
        left: 0;
        border-radius: 16px;
        margin-top: 0;
    }
    
    .img-text h1 {
        font-size: 20px;
        line-height: 24px;
    }
}

/* Hero section responsive styles - position higher on smaller screens */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
        margin-top: 0; /* Remove negative margin to fix gap */
        background-position: center right; /* Show more of the right side of the background image */
    }
    
    .hero-content {
        top: 80px; /* Move content further down */
        left: 20px;
        right: 20px;
    }
    
    .hero-text-content {
        bottom: 30px;
        left: 20px;
        right: 20px;
    }
    
    .hero-subtitle {
        font-size: 50px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .hero-description {
        font-size: 14px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 350px;
        border-radius: 1px;
        margin-top: 0; /* Remove negative margin to fix gap */
        background-position: center right; /* Show more of the right side of the background image */
    }
    
    .hero-content {
        top: 70px; /* Move content further down */
        left: 15px;
        right: 15px;
        max-width: 100%;
    }
    
    .hero-text-content {
        bottom: 20px;
        left: 15px;
        right: 15px;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 40px;
        line-height: 0.6;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-top: 10px;
        max-width: 100%;
    }
    
    .hero-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 300px;
        margin-top: 0; /* Remove negative margin to fix gap */
        border-radius: 6px;
        background-position: center right; /* Show more of the right side of the background image */
    }
    
    .hero-content {
        top: 60px; /* Move content further down */
        left: 10px;
        right: 10px;
    }
    
    .hero-text-content {
        bottom: 15px;
        left: 10px;
        right: 10px;
    }
    
    .hero-subtitle {
        font-size: 32px;
        line-height: 0.7;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 12px;
        margin-top: 8px;
    }
    
    .hero-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .promo-overlay {
        height: 500px;
    }
    
    .img img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 250px;
    }
    
    .img-text {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 170px;
        padding: 8px;
        top: 250px; /* Position below the image */
        left: 0;
        border-radius: 16px;
        margin-top: 0;
    }
    .img-text h1 {
        font-size: 16px;
        line-height: 20px;
    }
    
    .promo-description {
        font-size: 12px;
    }
    
    .promo-button {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .promo-overlay {
        height: 350px;
    }
    
    .img img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 200px;
    }
    
    .img-text {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 150px;
        padding: 6px;
        top: 200px; /* Position below the image */
        left: 0;
        border-radius: 10px;
        margin-top: 0;
    }
    
    .img-text h1 {
        font-size: 14px;
        line-height: 18px;
    }
    
    .promo-description {
        font-size: 11px;
    }
    
    .promo-button {
        padding: 8px;
        font-size: 13px;
    }
}

/* ========================================
   CATALOG SECTION
   ======================================== */

.catalog-section {
    width: 100%;
    background-color: #F5F5F5;
    padding: 30px 0;
}

.catalog-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* For larger screens, make catalog container full width */
@media (min-width: 1200px) {
    .catalog-section .container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.catalog-content {
    border-radius: 20px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: stretch;
    height: 100%;
}

/* LEFT COLUMN (Visual / Promo Block) */
.catalog-promo {
    background-image: url(./img/contact.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    min-height: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* RIGHT COLUMN (Contact Form) */
.catalog-form {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.form-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-input {
    height: 40px;
    background-color: #F1F1F1;
    border-radius: 8px;
    border: none;
    padding: 0 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
}

.form-input:focus {
    box-shadow: 0 0 0 2px #e30613;
}

/* LEFT COLUMN (Visual / Promo Block) */
.catalog-promo {
    background-image: url(./img/contact.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    height: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* RIGHT COLUMN (Contact Form) */
.catalog-form {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.form-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    color: #000000;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-input {
    height: 40px;
    background-color: #F1F1F1;
    border-radius: 8px;
    border: none;
    padding: 0 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
}

.form-input:focus {
    box-shadow: 0 0 0 2px #e30613;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    width: 100%;
    background-color: #f5f5f6;
    padding: 60px 0;
    box-sizing: border-box;
}

.faq-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.faq-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    text-align: left;
    margin-bottom: 40px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

/* For larger screens, make faq container full width */
@media (min-width: 1200px) {
    .faq-container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.faq-item {
    background-color: #E0E1E5;
    border-radius: 15px;
    padding: 15px 30px;
    margin-bottom: 15px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e1e5;
    margin-left: 0;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    width: 100%;
    line-height: 1.4;
}

.faq-icon {
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
    margin-left: 15px;
    line-height: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin-top: 15px;
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-top: 1px;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);

}

@keyframes fadeIn {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 500px; }
}
/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-section {
    width: 100%;
    background-color: #F5F5F5;
    padding: 40px 0;
}

.why-choose-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

/* For larger screens, make why-choose container full width */
@media (min-width: 1200px) {
    .why-choose-section .container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.section-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    color: var(--color-black);
    font-size: 50px;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.4;
}

.programs-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: stretch;
    height: 100%;
}

/* Program Cards */
.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    height: 100%;
}

/* LEFT COLUMN */
.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

/* STATISTICS CARDS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
}

.stat-card {
    background-color: var(--color-lighter-gray);
    border-radius: 10px;
    padding: 10px;
    text-align: left;
    height: auto;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-black);
    margin-bottom: 4px;
}

.stat-desc {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    color: var(--color-black);
    line-height: 1.4;
    flex-grow: 1;
}

.stat-card.highlight {
    background-color: var(--color-primary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stat-card.highlight .stat-number,
.stat-card.highlight .stat-desc {
    color: var(--color-white);
}

/* TEXT BLOCKS */
.text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: stretch;
}

.text-block {
    background-color: var(--color-lighter-gray);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.text-block-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-black);
    margin: 0;
}

.text-block-desc {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* RIGHT COLUMN */
.why-choose-right {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.image-card {
    background-color: var(--color-black);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.image-container {
    width: 100%;
    height: 100%;
    min-height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 12px;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 14px;
    padding: 15px 25px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
    position: relative;
}

.image-button:hover {
    background-color: var(--color-primary-hover);
}



/* ========================================
   COURSE PROGRESSION SECTION
   ======================================== */

.course-progression-section {
    background-color: #F5F5F5;
    padding: 40px 0;
    width: 100%;
}

.course-progression-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-progression-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: start;
}

.course-card {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-badge {
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 15px;
    width: 100px;
}

.course-content {
    display: flex;
    gap: 15px;
    flex-grow: 1;
}

.course-column {
    flex: 1;
}

.semester-title {
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
    font-size: 15px;
}

.course-list {
    list-style-type: disc;
    padding-left: 15px;
    margin-bottom: 0;
}

.course-list li {
    margin-bottom: 5px;
    line-height: 1;
    font-size: 13px;
}

/* Highlighted Card (Graduation) */
.course-card-highlighted {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 10px;
    justify-content: center;
    text-align: left;
    padding: 15px;
    height: 100%;
}

.course-badge-highlighted {
    background-color: var(--color-white);
    color: var(--color-black);
    margin-left: 0;
    margin-right: 0;
}

.course-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    justify-content: center;
}

.course-description p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.course-button {
    background-color: var(--color-white);
    color: var(--color-black);
    border: none;
    border-radius: 14px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0;
    font-size: 14px;
}

.course-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* ========================================
   TEAM SECTION
   ======================================== */

.team-section {
    background-color: #f5f5f5;
    padding: 40px 0;
    width: 100%;
}

.team-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.team-header {
    background-color: #f5f5f5;
    padding-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.team-title {
    font-weight: 600;
    color: var(--color-black);
    font-size: 40px;
    margin: 0;
}

.team-navigation {
    display: flex;
    gap: 8px;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    background-color: var(--color-light-gray);
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-black);
    font-size: 14px;
}

.team-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.team-track {
    display: flex;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-track.animated {
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 15px;
    flex-shrink: 0;
    width: 650px;
    margin-right: 16px;
}

.team-card-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    position: relative;
}

.team-text {
    flex: 1;
    margin-right: 15px;
}

.team-name {
    font-family: sans-serif;
    font-weight: 700;
    color: var(--color-black);
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.team-position {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-gray-text);
    line-height: 1.4;
    max-width: 90%;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.team-photo-container {
    width: 190px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 1;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide duplicate cards during initialization */
.team-card.duplicate {
    visibility: hidden;
}

.team-card.duplicate.show {
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-card {
        width: 350px;
        padding: 15px;
    }
    
    .team-name {
        font-size: 22px;
    }
    
    .team-position {
        font-size: 14px;
    }
    
    .team-photo-container {
        width: 150px;
        height: 210px;
    }
}

/* ========================================
   CONSULTATION SECTION
   ======================================== */

.consultation-section {
    background-color: var(--color-red-primary);
    border-radius: 10px;
    padding: 30px 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
    box-sizing: border-box;
}

/* For larger screens, make consultation section full width */
@media (min-width: 1200px) {
    .consultation-section {
        max-width: 100%;
        margin: 0;
    }
}

.consultation-container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* For larger screens, make consultation container full width */
@media (min-width: 1200px) {
    .consultation-container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.consultation-decor {
    position: absolute;
    left: 130px;
    top: 30%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    width: 150px;
    height: 150px;
}

.consultation-content {
    position: relative;
    z-index: 2;
}

.consultation-title-block {
    margin-bottom: 15px;
}

.consultation-title {
    font-weight: 700;
    color: var(--color-white);
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.consultation-subtitle {
    color: var(--color-white);
    opacity: 0.9;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.4;
}

.consultation-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.consultation-input {
    flex: 1;
    height: 44px;
    font-size: 14px;
    padding: 0 16px;
    background-color: var(--color-white);
    border-radius: 12px;
    border: none;
    outline: none;
}

.consultation-button {
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 12px;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.consultation-button:hover {
    background-color: #333333;
}

.consultation-checkbox {
    display: flex;
    align-items: flex-start;
}

.consultation-checkbox .checkbox-input {
    margin-right: 10px;
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

.consultation-checkbox .checkbox-label {
    color: var(--color-white);
    opacity: 0.85;
    font-size: 12px;
    line-height: 1.4;
}

/* ========================================
   EDUCATIONAL PROMO CARDS
   ======================================== */

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    /* padding: 20px; */
    box-sizing: border-box;
}

/* For larger screens, make promo cards grid full width */
@media (min-width: 1200px) {
    .promo-cards-grid {
        max-width: 100%;
        margin: 0;
    }
}

.educational-promo-card {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.educational-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Top area with 3% text and floating spheres */
.promo-top {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.percentage-3d {
    font-size: 48px;
    font-weight: 700;
    color: #d3d3d3;
    text-shadow: 
        0 0 10px rgba(211, 211, 211, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.floating-spheres {
    display: flex;
    gap: 8px;
}

.sphere {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #e30613);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(227, 6, 19, 0.6);
    animation: float 3s ease-in-out infinite;
}

.sphere:nth-child(2) {
    animation-delay: 0.5s;
}

.sphere:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Main content area with rhinoceros */
.promo-main {
    display: flex;
    padding: 0 20px;
    position: relative;
    min-height: 200px;
    align-items: center;
}

.rhino-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.rhino-illustration {
    width: 140px;
    height: 140px;
    background: linear-gradient(45deg, #8B4513 0%, #A0522D 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.rhino-illustration::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #e30613;
    border-radius: 50%;
    top: -10px;
    left: 20px;
    box-shadow: 0 0 8px rgba(227, 6, 19, 0.6);
}

.rhino-illustration::after {
    content: '🦏';
    position: absolute;
    font-size: 32px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Promo panel at the bottom */
.promo-panel {
    background-color: #e30613;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 20px 10px;
    color: white;
    text-align: center;
}

.promo-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.promo-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-bullets li {
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.2;
    position: relative;
    padding-left: 15px;
}

.promo-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
}

/* CTA Button */
.promo-cta {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    transition: all 0.3s ease;
}

.promo-cta:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive behavior */
@media (max-width: 992px) {
    .promo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .educational-promo-card {
        min-height: 350px;
    }
    
    .percentage-3d {
        font-size: 36px;
    }
    
    .rhino-illustration {
        width: 100px;
        height: 100px;
    }
    
    .promo-title {
        font-size: 14px;
    }
    
    .promo-bullets li {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .promo-cards-grid {
        padding: 15px;
        gap: 15px;
    }
    
    .educational-promo-card {
        min-height: 320px;
    }
    
    .percentage-3d {
        font-size: 32px;
    }
    
    .rhino-illustration {
        width: 80px;
        height: 80px;
    }
    
    .promo-panel {
        padding: 12px;
    }
    
    .promo-cta {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ========================================
   STATISTICS SECTION
   ======================================== */

.statistics-section {
    background-color: #F5F5F5;
    padding: 40px 0;
    width: 100%;
}

.statistics-container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* For larger screens, make statistics container full width */
@media (min-width: 1200px) {
    .statistics-container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.statistics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.statistics-title {
    font-weight: 700;
    color: #000000;
    font-size: 40px;
    margin: 0;
    text-align: left;
}

.statistics-navigation {
    display: flex;
    gap: 8px;
}

.statistics-slider {
    overflow: hidden;
    position: relative;
}

.statistics-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.statistic-card {
    background-color: #ed131c;
    border-radius: 10px;
    padding: 30px;
    flex-shrink: 0;
    height: 200px;
    width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.statistic-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-white);
    color: var(--color-black);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.statistic-badge .fa-solid {
    font-size: 20px;
    margin-top: 5px;
    color: #0ea900;
}

.statistic-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.statistic-title {
    font-weight: 500;
    font-size: 23px;
    color: #ffffff;
    line-height: 1;
    text-align: left;
}

.statistic-source {
    font-size: 13px;
    color: #ffffff;
    font-style: italic;
    opacity: 0.9;
    position: absolute;
    bottom: 20px;
    left: 30px;
    margin: 0;
}

.statistic-background-number {
    position: absolute;
    right: 2px;
    top: 10px;
    z-index: 1;
    
}
.background-number-img{
    width: 10rem;
}

/* ========================================
   GRADUATES WORK SECTION
   ======================================== */

.graduates-section {
    background-color: #F5F5F5;
    padding: 40px 0;
    width: 100%;
}

.graduates-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.graduates-title {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    color: var(--color-black);
    font-size: 40px;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.5;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.logo-card {
    background-color:#ECEDF0;
    border-radius: 10px;
    height: 70px;
    width: 232px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.company-logo {
    max-height: 35px;
    width: auto;
    object-fit: contain;
}

/* Responsive styles for graduates section */
@media (max-width: 1200px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .logo-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .logo-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 70px;
        padding: 15px 10px;
    }
    
    .company-logo {
        max-height: 30px;
    }
}

@media (max-width: 576px) {
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        justify-content: center; /* Center the grid items */
    }
    
    .logo-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 80px;
        padding: 20px 10px;
        display: flex;
        margin-left: 20px;
    }
    
    .company-logo {
        max-height: 25px;
    }
    
    .graduates-title {
        font-size: 32px;
        text-align: center; /* Center the title as well */
    }
}

/* ========================================
   STUDENT REVIEWS SECTION
   ======================================== */

.student-reviews-section {
    background-color: #F5F5F5;
    padding: 40px 0;
    width: 100%;
}

.reviews-container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* For larger screens, make reviews container full width */
@media (min-width: 1200px) {
    .reviews-container {
        max-width: 100%;
        margin: 0;
        padding: 0 30px;
    }
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.reviews-title {
    font-weight: 600;
    color: #000000;
    font-size: 40px;
    margin: 0;
    text-align: left;
}

.reviews-navigation {
    display: flex;
    gap: 8px;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    background-color: #dcdcdc;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000000;
    font-size: 14px;
}

.reviews-slider {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.reviews-track.animated {
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hide duplicate cards during initialization */
.review-card.duplicate {
    visibility: hidden;
}

.review-card.duplicate.show {
    visibility: visible;
}

.review-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 28px;
    flex-shrink: 0;
    width: 360px;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-weight: 600;
    font-size: 15px;
    color: #000000;
    margin-bottom: 4px;
}

.review-subtitle {
    font-size: 13px;
    color: #777777;
    font-weight: 400;
}

.review-body {
    flex-grow: 1;
    margin-bottom: 16px;
}

.review-body p {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    text-align: left;
}

.review-footer {
    margin-top: auto;
}

.review-program {
    font-size: 13px;
    color: #777777;
    font-style: italic;
    margin: 0;
}



/* Responsive styles for statistics section */
@media (max-width: 1200px) {
    .statistics-title {
        font-size: 36px;
    }
    
    .statistic-card {
        width: 280px;
        padding: 25px;
        border-radius: 28px;
    }
    
    .statistic-badge {
        top: 16px;
        right: 16px;
        padding: 4px 12px;
        font-size: 12px;
    }
    
    .statistic-title {
        font-size: 18px;
        margin: 0 0 15px 0;
    }
    
    .statistic-source {
        font-size: 12px;
        bottom: 16px;
        left: 16px;
    }
}

@media (max-width: 992px) {
    .statistics-section {
        padding: 30px 0;
    }
    
    .statistics-title {
        font-size: 32px;
    }
    
    .statistic-card {
        width: 260px;
        padding: 25px;
        border-radius: 25px;
    }
    
    .statistic-badge {
        top: 14px;
        right: 14px;
        padding: 3px 10px;
        font-size: 12px;
    }
    
    .statistic-title {
        font-size: 16px;
        margin: 0 0 15px 0;
    }
    
    .statistic-source {
        font-size: 11px;
        bottom: 14px;
        left: 14px;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 25px 0;
    }
    
    .statistics-header {
        margin-bottom: 20px;
    }
    
    .statistics-title {
        font-size: 28px;
    }
    
    .statistic-card {
        width: 240px;
        padding: 20px;
        border-radius: 24px;
    }
    
    .statistic-badge {
        top: 12px;
        right: 12px;
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .statistic-title {
        font-size: 15px;
        margin: 0 0 12px 0;
    }
    
    .statistic-source {
        font-size: 10px;
        bottom: 12px;
        left: 12px;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 20px 0;
    }
    
    .statistics-header {
        margin-bottom: 16px;
    }
    
    .statistics-title {
        font-size: 24px;
    }
    
    .statistic-card {
        width: 220px;
        padding: 18px;
        border-radius: 22px;
    }
    
    .statistic-badge {
        top: 10px;
        right: 10px;
        padding: 2px 6px;
        font-size: 10px;
    }
    
    .statistic-title {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
    
    .statistic-source {
        font-size: 9px;
        bottom: 10px;
        left: 10px;
    }
}



/* ========================================
   ULTRA-WIDE SCREEN STYLES (1600px and up)
   ======================================== */

@media (min-width: 1600px) {
    .hero-section {
        height: 700px;
        background-size: cover;
    }
    
    .hero-content {
        position: absolute;
        top: 50px;
        left: 50px;
        max-width: 700px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-text-content {
        position: absolute;
        bottom: 50px;
        left: 50px;
        max-width: 700px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-subtitle {
        font-size: 80px;
    }
    
    .hero-description {
        font-size: 17px;
        max-width: 600px;
        align-self: flex-start;
    }
    
    .hero-button {
        padding: 18px 35px;
        font-size: 17px;
        margin-top: 30px;
        align-self: flex-start;
    }
    
    .catalog-content {
        padding: 50px;
    }
    
    .form-title {
        font-size: 36px;
    }
    
    .form-input {
        height: 60px;
        padding: 0 25px;
        font-size: 17px;
    }
    
    .submit-button {
        height: 60px;
        font-size: 17px;
        margin-bottom: 25px;
    }
    
    .checkbox-label {
        font-size: 16px;
    }
}

/* ========================================
   LARGE SCREEN STYLES (1400px and up)
   ======================================== */

/* Make all containers full width for large screens */
@media (min-width: 1400px) {
    .container,
    .section-wrapper,
    .features-container,
    .about-container,
    .programs-container,
    .catalog-section .container,
    .why-choose-section .container,
    .faq-container,
    .faq-section .container,
    .consultation-section,
    .consultation-container,
    .statistics-container,
    .reviews-container,
    .graduates-container,
    .footer-container,
    .hero-section,
    .hero-section .container,
    .promo-cards-grid {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .container,
    .section-wrapper,
    .features-container,
    .about-container,
    .programs-container,
    .catalog-section .container,
    .why-choose-section .container,
    .faq-container,
    .faq-section .container,
    .consultation-container,
    .statistics-container,
    .reviews-container,
    .graduates-container,
    .footer-container,
    .hero-section .container,
    .promo-cards-grid {
        max-width: 100%;
    }
}

@media (min-width: 1400px) {
    .hero-section {
        height: 650px;
        background-size: cover;
    }
    
    .hero-content {
        position: absolute;
        top: 40px;
        left: 40px;
        max-width: 650px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-text-content {
        position: absolute;
        bottom: 40px;
        left: 40px;
        max-width: 650px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 75px;
    }
    
    .hero-subtitle {
        font-size: 75px;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 550px;
        align-self: flex-start;
    }
    
    .hero-button {
        padding: 15px 30px;
        font-size: 16px;
        margin-top: 25px;
        align-self: flex-start;
    }
    
    .catalog-content {
        padding: 40px;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-input {
        height: 55px;
        padding: 0 20px;
        font-size: 16px;
    }
    
    .submit-button {
        height: 55px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .checkbox-label {
        font-size: 15px;
    }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Ensure consistent alignment on all screen sizes */
@media (max-width: 1300px) {
    .container,
    .section-wrapper,
    .features-container,
    .about-container,
    .programs-container,
    .catalog-section .container,
    .why-choose-section .container,
    .course-progression-container,
    .team-container,
    .consultation-container,
    .statistics-container,
    .graduates-container,
    .reviews-container,
    .faq-section .container,
    .faq-container {
        padding: 0 15px;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .consultation-section {
        padding: 25px 0;
    }
    
    .consultation-decor {
        display: none;
    }
    
    .consultation-title {
        font-size: 32px;
    }
    
    .consultation-subtitle {
        font-size: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .consultation-input,
    .consultation-button {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .container,
    .section-wrapper,
    .features-container,
    .about-container,
    .programs-container,
    .catalog-section .container,
    .why-choose-section .container,
    .course-progression-container,
    .team-container,
    .consultation-container,
    .statistics-container,
    .graduates-container,
    .reviews-container,
    .faq-section .container,
    .faq-container {
        padding: 0 12px;
    }
    
    .features-section,
    .about-section,
    .programs-section,
    .catalog-section,
    .why-choose-section,
    .course-progression-section,
    .graduates-section,
    .consultation-section,
    .team-section,
    .student-reviews-section,
    .statistics-section,
    .faq-section {
        padding: 30px 0;
    }
    
    /* FAQ specific rules */
    .faq-section {
        padding: 30px 0;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-item {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 15px;
        margin-left: 10px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-icon {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 13px;
        margin-top: 8px;
        padding-left: 8px;
    }
    
    /* Consultation specific rules */
    .consultation-section {
        padding: 20px 0;
    }
    
    .consultation-title {
        font-size: 28px;
    }
    
    .consultation-subtitle {
        font-size: 14px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .consultation-input,
    .consultation-button {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container,
    .section-wrapper,
    .features-container,
    .about-container,
    .programs-container,
    .catalog-section .container,
    .why-choose-section .container,
    .course-progression-container,
    .team-container,
    .consultation-container,
    .statistics-container,
    .graduates-container,
    .reviews-container,
    .faq-section .container,
    .faq-container {
        padding: 0 10px;
    }
    
    .features-section,
    .about-section,
    .programs-section,
    .catalog-section,
    .why-choose-section,
    .course-progression-section,
    .graduates-section,
    .consultation-section,
    .team-section,
    .student-reviews-section,
    .statistics-section,
    .faq-section {
        padding: 25px 0;
    }
}
/* FAQ Responsive styles */
@media (max-width: 992px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-item {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 15px;
        margin-left: 10px;
    }
    
    .faq-question {
        font-size: 16px;
        padding-right: 10px;
    }
    
    .faq-icon {
        font-size: 18px;
        margin-left: 10px;
    }
    
    .faq-answer {
        font-size: 14px;
        margin-top: 10px;
        padding-right: 0;
        padding-left: 10px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 25px 0;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-item {
        padding: 15px 25px;
        margin-bottom: 15px;
        border-radius: 15px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .faq-question {
        font-size: 16px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .faq-icon {
        font-size: 20px;
        margin-left: 10px;
        flex-shrink: 0;
        align-self: center;
    }
    
    .faq-answer {
        font-size: 14px;
        margin-top: 10px;
        padding: 8px 0 0 0;
    }
}

/* Features section adjustment for 576px breakpoint */
@media (max-width: 576px) {
    .features-section {
        margin-top: 20px;
        padding-top: 40px; /* Increase top padding to move it down */
    }
}

/* Responsive styles for consultation section */
@media (max-width: 768px) {
    .consultation-section {
        padding: 25px 0;
        border-radius: 20px;
    }
    
    .consultation-decor {
        display: none;
    }
    
    .consultation-title {
        font-size: 32px;
    }
    
    .consultation-subtitle {
        font-size: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .consultation-input,
    .consultation-button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .consultation-input {
        height: 52px;
        font-size: 16px;
        padding: 0 20px;
    }
    
    .consultation-button {
        height: 52px;
        padding: 0 24px;
        font-size: 16px;
    }
    
    .consultation-checkbox {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .consultation-checkbox .checkbox-label {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .consultation-section {
        padding: 20px 0;
        border-radius: 16px;
    }
    
    .consultation-title {
        font-size: 28px;
    }
    
    .consultation-subtitle {
        font-size: 14px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .consultation-input,
    .consultation-button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .consultation-input {
        height: 54px;
        font-size: 16px;
        padding: 0 20px;
    }
    
    .consultation-button {
        height: 54px;
        padding: 0 24px;
        font-size: 16px;
    }
    
    .consultation-checkbox {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .consultation-checkbox .checkbox-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .consultation-section {
        padding: 15px 0;
        border-radius: 16px;
    }
    
    .consultation-title {
        font-size: 26px;
    }
    
    .consultation-subtitle {
        font-size: 13px;
    }
    
    .form-row {
        gap: 8px;
    }
    
    .consultation-input {
        height: 52px;
        font-size: 15px;
        padding: 0 24px;
    }
    
    .consultation-button {
        height: 52px;
        padding: 0 24px;
        font-size: 15px;
    }
    
    .consultation-checkbox .checkbox-label {
        font-size: 11px;
    }
}

@media (max-width: 425px) {
    .faq-section {
        padding: 20px 0;
    }
    
    .faq-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-item {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 15px;
        margin-left: 10px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-icon {
        font-size: 18px;
    }
    
    .faq-answer {
        font-size: 13px;
        margin-top: 8px;
    }
}

@media (max-width: 375px) {
    .faq-title {
        font-size: 20px;
    }
    
    .faq-question {
        font-size: 14px;
    }
    
    .faq-icon {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 12px;
    }
}

   /* Large devices (desktops, 1200px and down) */
@media (max-width: 1200px) {
    .graduates-title {
        font-size: 24px;
    }
    .container {
        max-width: 1140px;
    }
    
    .hero-content {
        position: absolute;
        top: 25px;
        left: 25px;
        max-width: 500px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-text-content {
        position: absolute;
        bottom: 25px;
        left: 25px;
        max-width: 500px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 45px;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 45px;
        font-weight: 700;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 550px;
        align-self: flex-start;
    }
    
    .hero-button {
        padding: 15px 30px;
        font-size: 16px;
        margin-top: 25px;
        align-self: flex-start;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 160px;
        height: 160px;
        right: -15px;
    }
    
    .programs-content {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
        height: 100%;
    }
    
    .promo-card {
        min-height: 350px;
    }
    
    .promo-content {
        min-height: 180px;
    }
    
    .catalog-content {
        padding: 25px;
    }
    
    .catalog-title {
        font-size: 40px;
    }
    
    .form-title {
        font-size: 26px;
        font-weight: 600;
    }
    
    .section-title {
        font-size: 40px;
        font-weight: 600;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .text-columns {
        gap: 25px;
    }
    
    .text-block-title {
        font-size: 16px;
    }
    
    .text-block {
        padding: 20px;
    }
    
    .image-container {
        height: 450px;
        justify-content: flex-start;
        padding: 25px;
    }
}

/* Medium devices (tablets, 992px and down) */
@media (max-width: 992px) {
    .team-section {
        min-height: 440px;
    }
    
    .team-title {
        font-size: 28px;
    }
    
    .team-name {
        font-size: 28px;
    }
    
    .team-card {
        width: 700px; /* Fixed width as required by project specification */
    }
    .graduates-title {
        font-size: 22px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .logo-card {
        height: 60px;
        width: 150px;
    }
    
    .company-logo {
        max-height: 30px;
    }

    .top-bar {
        height: 50px;
    }
    
    .main-navbar {
        height: 60px;
    }
    
    .logo {
        height: 36px;
    }
    
    .top-right-section {
        gap: 15px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-menu.active.show {
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger-menu {
        display: block;
        font-size: 20px;
    }
    
    .hero-section {
        height: 400px;
        margin-top: 0;
        background-size: cover;
    }
    
    .hero-content {
        position: absolute;
        top: 30px;
        left: 30px;
        max-width: 100%;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-text-content {
        position: absolute;
        bottom: 30px;
        left: 30px;
        max-width: 100%;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 36px;
        font-weight: 600;
    }
    
    .hero-subtitle {
        font-size: 36px;
        font-weight: 600;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 100%;
        align-self: flex-start;
    }
    
    .about-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .about-title, .programs-title {
        font-size: 2.5rem;
        font-weight: 600;
        text-align: center;
    }
    
    .about-text {
        width: 100%;
        padding: 18px;
    }
    
    .about-text h3 {
        font-size: 24px;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .about-media {
        width: 100%;
        height: 100%;
    }
    
    .media-container {
        height: 350px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .program-card {
        min-height: 160px;
        padding: 20px;
    }
    
    .program-title {
        font-size: 22px;
    }
    
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 15px;
        align-items: stretch;
        height: 100%;
    }
    
    .catalog-promo {
        padding: 20px;
    }
    
    .why-choose-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
        height: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .text-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .image-container {
        height: 400px;
        justify-content: flex-start;
        padding: 25px;
    }
}

/* Header Responsive Improvements */
@media (max-width: 1200px) {
    .top-right-section {
        gap: 12px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .nav-button {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .primary-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .top-right-section {
        gap: 10px;
    }
    
    .phone-number {
        font-size: 13px;
    }
    
    .menu-button {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-menu.active.show {
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger-menu {
        display: block;
        font-size: 18px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-button {
        padding: 6px 12px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    
    .primary-button {
        padding: 7px 14px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        height: auto;
        padding: 10px 15px;
        gap: 8px;
    }
    
    .logo-section {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 0 10px;
    }
    
    .top-right-section {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo {
        height: 32px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .phone-number {
        font-size: 12px;
    }
    
    .menu-button {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 8px 0;
        gap: 6px;
    }
    
    .logo {
        height: 28px;
        max-width: 100%;
    }
    
    .phone-number {
        font-size: 11px;
    }
    
    .menu-button {
        display: none;
    }
    
    .fa-search, .fa-bars {
        font-size: 16px;
    }
}

/* Home Page Responsive Improvements */
@media (max-width: 1200px) {
    .hero-section {
        height: 350px;
    }
    
    .hero-content {
        max-width: 400px;
    }
    
    .hero-text-content {
        max-width: 400px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        gap: 15px;
    }
    
    .programs-content {
        gap: 15px;
    }
    
    .programs-grid {
        gap: 12px;
    }
    
    .features-grid {
        gap: 12px;
    }
    
    .feature-card {
        padding: 18px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-text {
        font-size: 12px;
    }
    
    .card-icon {
        width: 120px;
        height: 120px;
        right: -10px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 320px;
    }
    
    .hero-content {
        max-width: 350px;
    }
    
    .hero-text-content {
        max-width: 350px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        gap: 12px;
    }
    
    .about-text {
        padding: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .programs-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px;
        height: auto;
    }
    
    .card-title {
        font-size: 15px;
    }
    
    .card-text {
        font-size: 11px;
    }
    
    .card-icon {
        width: 100px;
        height: 100px;
        right: -5px;
        top: 40px;
    }
}

/* Small devices (landscape phones, 768px and down) */
@media (max-width: 768px) {
    .team-section {
        min-height: 420px;
    }
    
    .team-title {
        font-size: 26px;
    }
    
    .team-card {
        width: 350px;
    }
    
    .team-card-content {
        flex-direction: column;
    }
    
    .team-position {
        position: static;
        margin-top: 10px;
        max-width: 100%;
    }
    
    .team-photo-container {
        width: 170px;
        height: 250px;
        margin: 20px auto 0 auto;
        align-self: center;
    }
    .graduates-section {
        padding: 30px 0;
    }
    
    .graduates-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .logos-grid {
        gap: 12px;
    }
    
    .logo-card {
        height: 55px;
        width: 150px;
        padding: 6px;
    }
    
    .company-logo {
        max-height: 28px;
    }

    .top-bar {
        height: 50px;
    }
    
    .main-navbar {
        height: 50px;
    }
    
    .top-right-section {
        gap: 12px;
    }
    
    .phone-number {
        font-size: 13px;
    }
    
    .menu-button {
        font-size: 14px;
        padding: 4px 8px;
    }
    
    .hero-section {
        height: 320px;
        margin-top: 1rem;
        background-size: cover;
    }
    
    .hero-content {
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-text-content {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 26px;
        font-weight: 600;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 6px;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 13px;
        margin-top: 10px;
        align-self: flex-start;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-button {
        margin-top: 12px;
        padding: 8px 16px;
        font-size: 13px;
        align-self: flex-start;
    }
    
    .features-section {
        padding: 0;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-card {
        padding: 12px;
        height: auto;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-text {
        font-size: 11px;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
        right: -5px;
        top: 30px;
    }
    
    .about-section {
        padding: 30px 0;
    }
    
    .about-title, .programs-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 12px;
    }
    
    .programs-section {
        padding: 30px 0;
    }
    
    .about-text p {
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .programs-container {
        padding: 0 15px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        height: 100%;
    }
    
    .catalog-section {
        padding: 30px 0;
    }
    
    .catalog-container {
        padding: 0 15px;
    }
    
    .catalog-content {
        padding: 18px 12px;
        border-radius: 12px;
        height: 100%;
    }
    
    .catalog-promo {
        padding: 12px;
    }
    
    .form-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    
    .form-input {
        height: 42px;
        padding: 0 10px;
        margin-bottom: 10px;
        font-size: 13px;
    }
    
    .submit-button {
        height: 45px;
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .checkbox-label {
        font-size: 11px;
    }
    
    .why-choose-section {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    
    .stat-card {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .text-block-title {
        font-size: 13px;
    }
    
    .text-block {
        padding: 15px;
    }
    
    .image-container {
        height: 220px;
        border-radius: 12px;
        justify-content: flex-start;
        padding: 10px;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .team-section {
        min-height: 420px;
        padding: 30px 0;
    }
    
    .team-title {
        font-size: 24px;
    }
    
    .team-name {
        font-size: 24px;
    }
    
    .team-card {
        width: 280px;
        padding: 15px;
    }
    
    .team-card-content {
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
    
    .team-text {
        margin-bottom: auto;
    }
    
    .team-position {
        position: static;
        margin-top: 10px;
        max-width: 100%;
    }
    
    .team-photo-container {
        width: 160px;
        height: 200px;
        margin: 10px auto 0 auto;
        align-self: center;
    }
    .consultation-section {
        padding: 20px;
    }
    
    .consultation-decor {
        width: 100px;
        height: 100px;
        left: 20px;
    }
    
    .consultation-background-text {
        font-size: 120px;
        right: 10px;
    }
    
    .consultation-title {
        font-size: 28px;
    }
    
    .consultation-subtitle {
        font-size: 14px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .consultation-input,
    .consultation-button {
        width: 100%;
    }
    .graduates-section {
        padding: 25px 0;
    }
    
    .graduates-title {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .logo-card {
        height: 50px;
        width: 150px;
        padding: 5px;
    }
    
    .company-logo {
        max-height: 25px;
    }
    .container {
        max-width: 100%;
    }
    
    .logo-section {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 10px;
    }
    
    .top-right-section {
        width: 100%;
        justify-content: space-between;
    }
    
    .phone-number {
        font-size: 12px;
    }
    
    .hero-section {
        height: 300px;
        margin-top: 0.5rem;
        border-radius: 15px;
        background-size: cover;
    }
    
    .hero-content {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-text-content {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-subtitle {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 4px;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-title {
        font-size: 22px;
        font-weight: 600;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 12px;
        margin-top: 8px;
        align-self: flex-start;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-button {
        margin-top: 10px;
        padding: 7px 14px;
        font-size: 12px;
        border-radius: 8px;
        align-self: flex-start;
    }
    
    .features-section {
        padding: 0;
    }
    
    .features-container {
        padding: 0 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-card {
        padding: 10px;
        height: auto;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .card-text {
        font-size: 10px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        right: -3px;
        top: 20px;
    }
    
    .about-section {
        padding: 30px 0;
    }
    
    .about-container {
        padding: 0 12px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .about-text p {
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .about-title, .programs-title {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 12px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        height: 100%;
    }
    
    .programs-section {
        padding: 30px 0;
    }
    
    .about-text p {
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .programs-container {
        padding: 0 12px;
    }
    
    .programs-content {
        grid-template-columns: 1fr;
        gap: 15px;
        align-items: stretch;
        height: 100%;
    }
    
    .promo-card {
        border-radius: 15px;
        min-height: 250px;
        height: auto;
    }
    
    .promo-content {
        padding: 8px;
    }
    
    .promo-title {
        font-size: 16px;
        margin: 0 0 8px 0;
    }
    
    .promo-description {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .promo-button {
        padding: 8px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .catalog-content {
        padding: 16px 12px;
        border-radius: 12px;
        gap: 12px;
        align-items: stretch;
        height: 100%;
    }
    
    .catalog-promo {
        padding: 16px;
    }
    
    .form-title {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    
    .form-input {
        height: 45px;
        padding: 0 10px;
        margin-bottom: 10px;
        font-size: 13px;
    }
    
    .submit-button {
        height: 48px;
        font-size: 13px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .checkbox-label {
        font-size: 11px;
    }
    
    .why-choose-section {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
        height: 100%;
    }
    
    .stat-card {
        padding: 6px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .text-block-title {
        font-size: 12px;
    }
    
    .text-block {
        padding: 14px;
    }
    
    .image-container {
        height: 220px;
        border-radius: 12px;
        justify-content: flex-start;
        padding: 8px;
    }
    
    .image-button {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
        height: 100%;
    }
}

/* Extra extra small devices (small phones, 400px and down) */
@media (max-width: 400px) {
    .consultation-section {
        padding: 15px 15px;
    }
    
    .consultation-decor {
        display: none; /* Hide decor on very small screens */
    }
    
    .consultation-title {
        font-size: 26px;
    }
    
    .consultation-subtitle {
        font-size: 14px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .consultation-input,
    .consultation-button {
        width: 100%;
        margin-bottom: 10px;
    }
    .graduates-section {
        padding: 20px 0;
    }
    
    .graduates-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .logos-grid {
        gap: 10px;
    }
    
    .logo-card {
        height: 45px;
        width: 150px;
        padding: 4px;
    }
    
    .company-logo {
        max-height: 22px;
    }
    .top-bar {
        height: auto;
        padding: 6px 0;
    }
    
    .logo {
        height: 24px;
        max-width: 100%;
    }
    
    .top-right-section {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .phone-number {
        font-size: 10px;
    }
    
    .menu-button {
        font-size: 11px;
        padding: 2px 5px;
    }
    
    .fa-search, .fa-bars {
        font-size: 14px;
    }
    
    .hero-section {
        height: 260px;
        margin-top: 0;
        background-size: cover;
    }
    
    .hero-subtitle {
        font-size: 16px;
        font-weight: 600;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-title {
        font-size: 18px;
        font-weight: 600;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 11px;
        align-self: flex-start;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-button {
        padding: 6px 12px;
        font-size: 11px;
        align-self: flex-start;
    }
    
    .hero-content {
        position: absolute;
        top: 8px;
        left: 8px;
        right: 8px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-text-content {
        position: absolute;
        bottom: 8px;
        left: 8px;
        right: 8px;
        color: #ffffff;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-text {
        font-size: 11px;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
        right: -5px;
        top: 20px;
    }
    
    .features-grid {
        gap: 8px;
    }
    
    .feature-card {
        padding: 8px;
        height: auto;
    }
    
    .card-title {
        font-size: 12px;
    }
    
    .card-text {
        font-size: 9px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        right: -2px;
        top: 15px;
    }
    
    .about-title, .programs-title {
        font-size: 1.6rem;
        font-weight: 600;
    }
    
    .program-title {
        font-size: 14px;
    }
    
    .about-text p {
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .about-content {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        height: 100%;
    }
    
    .media-container {
        height: 250px;
    }
    
    .promo-title {
        font-size: 14px;
    }
    
    .promo-description {
        font-size: 11px;
    }
    
    .programs-content {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: stretch;
        height: 100%;
    }
    
    .catalog-content {
        padding: 12px;
        border-radius: 10px;
        align-items: stretch;
        height: 100%;
    }
    
    .catalog-promo {
        padding: 12px;
    }
    
    .form-title {
        font-size: 20px;
        font-weight: 600;
    }
    
    .form-input {
        height: 40px;
        padding: 0 8px;
        margin-bottom: 8px;
    }
    
    .text-block {
        padding: 12px;
    }
    
    .submit-button {
        height: 42px;
    }
    
    .why-choose-section {
        padding: 15px 0;
    }
    
    .section-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 15px;
        align-items: stretch;
        height: 100%;
    }
    
    .stat-card {
        padding: 8px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .text-block-title {
        font-size: 12px;
    }
    
    .text-block {
        padding: 8px;
    }
    
    .image-container {
        height: 180px;
        border-radius: 10px;
        justify-content: flex-start;
        padding: 6px;
    }
    
    .image-button {
        padding: 6px 10px;
        font-size: 9px;
    }
}

/* Responsive styles for course progression section */
@media (max-width: 992px) {
    .course-progression-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .course-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .course-progression-section {
        padding: 50px 0;
    }
    
    .course-progression-container {
        padding: 0 15px;
    }
    
    .course-card {
        padding: 15px;
        border-radius: 20px;
    }
    
    .course-card-highlighted {
        border-radius: 24px;
        padding: 20px;
    }
    
    .semester-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .course-list li {
        margin-bottom: 5px;
        font-size: 13px;
    }
    
    .course-description p {
        font-size: 13px;
    }
    
    .course-button {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .course-progression-section {
        padding: 40px 0;
    }
    
    .course-progression-container {
        padding: 0 12px;
    }
    
    .course-card {
        padding: 12px;
    }
    
    .course-badge {
        padding: 5px 10px;
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .semester-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .course-list {
        padding-left: 12px;
    }
    
    .course-list li {
        margin-bottom: 4px;
        font-size: 12px;
    }
    
    .course-description p {
        font-size: 12px;
    }
    
    .course-button {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 10px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    width: 100%;
    background-color: #ffffff;
    padding: 32px 0;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 80px; /* Increased from 60px to 80px */
    margin-right: 20px;
}

.footer-text {
    display: flex;
    flex-direction: column;
}

.footer-subtitle {
    font-size: 12px;
    color: #777777;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-title {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 4px;
}

.footer-location {
    font-size: 18px;
    color: #e30613;
    font-weight: normal;
}

.contacts-card {
    background-color: #f1f2f3;
    border-radius: 20px;
    padding: 24px;
    width: 520px;
    display: flex;
    flex-direction: column;
}

.contacts-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.contacts-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-info {
    font-size: 14px;
    color: #555555;
    text-align: left;
}

.contact-info div {
    margin-bottom: 5px;
}

.consult-button {
    background-color: #e30613;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Inter', Arial, sans-serif;
    cursor: pointer;
    white-space: nowrap;
    margin-bottom: 15px;
    align-self: flex-end;
}

.social-buttons {
    display: flex;
    justify-content: flex-end;
}

.social-button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    cursor: pointer;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
}

.social-button:last-child {
    margin-left: 12px;
}

.footer-bottom {
    margin-top: 20px;
}

.footer-copyright {
    font-size: 12px;
    color: #888888;
    text-align: left;
}

/* ========================================
   RESPONSIVE STYLES FOR REVIEWS SECTION
   ======================================== */

@media (max-width: 1200px) {
    .reviews-title {
        font-size: 36px;
    }
    
    .review-card {
        width: 340px;
        padding: 24px;
    }
    
    .statistics-title {
        font-size: 36px;
    }
    
    .statistic-card {
        width: 280px;
        padding: 20px;
    }
    
    .statistic-value {
        font-size: 42px;
        margin: 25px 0 15px 0;
    }
}

@media (max-width: 992px) {
    .student-reviews-section {
        padding: 30px 0;
    }
    
    .reviews-title {
        font-size: 32px;
    }
    
    .review-card {
        width: 320px;
        padding: 24px;
    }
    
    .review-author {
        font-size: 14px;
    }
    
    .statistics-section {
        padding: 30px 0;
    }
    
    .statistics-title {
        font-size: 32px;
    }
    
    .statistic-card {
        width: 260px;
        padding: 20px;
        border-radius: 20px;
    }
    
    .statistic-value {
        font-size: 36px;
        margin: 20px 0 15px 0;
    }
    
    .statistic-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .student-reviews-section {
        padding: 25px 0;
    }
    
    .reviews-header {
        margin-bottom: 20px;
    }
    
    .reviews-title {
        font-size: 28px;
    }
    
    .review-card {
        width: 300px;
        padding: 20px;
        border-radius: 20px;
    }
    
    .review-header {
        margin-bottom: 14px;
    }
    
    .review-avatar {
        width: 44px;
        height: 44px;
    }
    
    .review-author {
        font-size: 14px;
    }
    
    .review-subtitle {
        font-size: 12px;
    }
    
    .review-body p {
        font-size: 13px;
    }
    
    .review-program {
        font-size: 12px;
    }
    
    .statistics-section {
        padding: 25px 0;
    }
    
    .statistics-header {
        margin-bottom: 20px;
    }
    
    .statistics-title {
        font-size: 28px;
    }
    
    .statistic-card {
        width: 260px;
        padding: 18px;
        border-radius: 20px;
    }
    
    .statistic-badge {
        top: 14px;
        right: 14px;
        padding: 3px 10px;
        font-size: 12px;
    }
    
    .statistic-value {
        font-size: 32px;
        margin: 20px 0 12px 0;
    }
    
    .statistic-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .statistic-source {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .student-reviews-section {
        padding: 20px 0;
    }
    
    .reviews-header {
        margin-bottom: 16px;
    }
    
    .reviews-title {
        font-size: 26px;
    }
    
    .review-card {
        width: 280px;
        padding: 18px;
        border-radius: 18px;
    }
    
    .review-header {
        margin-bottom: 12px;
    }
    
    .review-avatar {
        width: 40px;
        height: 40px;
    }
    
    .review-author {
        font-size: 13px;
    }
    
    .review-subtitle {
        font-size: 11px;
    }
    
    .review-body p {
        font-size: 12px;
    }
    
    .review-program {
        font-size: 11px;
    }
    
    .nav-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .statistics-section {
        padding: 20px 0;
    }
    
    .statistics-header {
        margin-bottom: 16px;
    }
    
    .statistics-title {
        font-size: 26px;
    }
    
    .statistic-card {
        width: 240px;
        padding: 16px;
        border-radius: 18px;
    }
    
    .statistic-badge {
        top: 12px;
        right: 12px;
        padding: 2px 8px;
        font-size: 11px;
    }
    
    .statistic-value {
        font-size: 28px;
        margin: 18px 0 10px 0;
    }
    
    .statistic-description {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .statistic-source {
        font-size: 10px;
    }
    
    .stats-nav-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
/* Responsive styles */
@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .faq-item {
        padding: 6px 12px;
        margin-bottom: 5px;
        border-radius: 5px;
    }
    
    .faq-question {
        font-size: 13px;
    }
    
    .faq-icon {
        font-size: 13px;
    }
    
    .faq-answer {
        font-size: 12px;
        margin-top: 6px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 15px 0;
    }
    
    .faq-title {
        font-size: 20px;
        margin-bottom: 10px;
        color: #000000;
    }
    
    .faq-item {
        padding: 4px 8px;
        margin-bottom: 3px;
        border-radius: 3px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-question {
        font-size: 11px;
        width: 100%;
    }
    
    .faq-icon {
        font-size: 11px;
        flex-shrink: 0;
    }
    
    .faq-answer {
        font-size: 10px;
        margin-top: 4px;
        width: 100%;
    }
}



/* Catalog Section Responsive */
@media (max-width: 1200px) {
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalog-promo {
        min-height: 300px;
    }
}

@media (max-width: 992px) {
    .catalog-section {
        padding: 20px 0;
    }
    
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalog-promo {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .catalog-section {
        padding: 15px 0;
    }
    
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .catalog-promo {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .catalog-section {
        padding: 10px 0;
    }
    
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .catalog-promo {
        min-height: 150px;
    }
}

/* Responsive styles for programs section */
@media (max-width: 992px) {
    .programs-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Make promo card stack below the program cards on smaller screens */
    .promo-card {
        order: 2; /* Show after program cards */
        grid-column: 1; /* Take full width */
    }
    
    .programs-grid {
        order: 1; /* Show first */
    }
}

@media (max-width: 768px) {
    .programs-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .program-card {
        min-height: 140px;
        padding: 12px;
    }
    
    .program-title {
        font-size: 20px;
    }
    
    .program-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .programs-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .program-card {
        min-height: 130px;
        padding: 10px;
    }
    
    .program-code {
        font-size: 12px;
    }
    
    .program-title {
        font-size: 18px;
    }
    
    .program-button {
        padding: 8px 16px;
        font-size: 13px;
    }


/* Responsive styles for catalog section */
@media (max-width: 992px) {
    .catalog-section {
        padding: 20px 0;
    }
    
    .catalog-content {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .catalog-promo {
        min-height: 280px;
        padding: 15px;
    }
    
    .catalog-form {
        padding: 20px;
    }
    
    .form-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .catalog-section {
        padding: 15px 0;
    }
    
    .catalog-content {
        padding: 15px;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .catalog-promo {
        min-height: 250px;
        padding: 10px;
    }
    
    .catalog-form {
        padding: 15px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-input {
        height: 38px;
        font-size: 13px;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .catalog-section {
        padding: 10px 0;
    }
    
    .catalog-content {
        padding: 12px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .catalog-promo {
        min-height: 220px;
        padding: 8px;
    }
    
    .catalog-form {
        padding: 12px;
    }
    
    .form-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .form-input {
        height: 36px;
        font-size: 12px;
        padding: 0 8px;
        margin-bottom: 8px;
    }
    
    .submit-button {
        height: 40px;
        font-size: 12px;
    }
    
    .checkbox-label {
        font-size: 11px;
    }
}

@media (max-width: 425px) {
    .catalog-section {
        padding: 8px 0;
    }
    
    .catalog-content {
        padding: 10px;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .catalog-promo {
        min-height: 200px;
        padding: 6px;
    }
    
    .catalog-form {
        padding: 10px;
    }
    
    .form-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .form-input {
        height: 34px;
        font-size: 11px;
        padding: 0 6px;
        margin-bottom: 6px;
    }
    
    .submit-button {
        height: 36px;
        font-size: 11px;
    }
    
    .checkbox-label {
        font-size: 10px;
    }
}

/* Very small devices (phones, 320px and down) */
@media (max-width: 320px) {
    .hero-section {
        height: 250px;
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: 16px;
        font-weight: 600;
    }
    
    .hero-title {
        font-size: 18px;
        font-weight: 600;
    }
    
    .hero-description {
        font-size: 11px;
        align-self: flex-start;
    }
    
    .hero-button {
        padding: 5px 10px;
        font-size: 11px;
        align-self: flex-start;
    }
    
    .hero-content {
        top: 3px;
        left: 3px;
    }
    
    .hero-text-content {
        bottom: 3px;
        left: 3px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-card {
        height: auto;
        padding: 12px;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .card-text {
        font-size: 10px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        right: -3px;
        top: 15px;
    }
    
    .about-title, .programs-title {
        font-size: 1.4rem;
        font-weight: 600;
    }
    
    .section-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
    }
    
    .program-title {
        font-size: 13px;
    }
    
    .program-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .promo-title {
        font-size: 12px;
    }
    
    .promo-description {
        font-size: 10px;
    }
    
    .promo-button {
        padding: 6px;
        font-size: 10px;
    }
    
    .catalog-content {
        padding: 10px;
        border-radius: 8px;
        align-items: stretch;
        height: 100%;
    }
    
    .catalog-promo {
        min-height: 180px;
        padding: 5px;
    }
    
    .catalog-form {
        padding: 10px;
    }
    
    .form-title {
        font-size: 18px;
        font-weight: 600;
    }
    
    .form-input {
        height: 36px;
        padding: 0 6px;
        margin-bottom: 6px;
        font-size: 12px;
    }
    
    .submit-button {
        height: 38px;
        font-size: 12px;
    }
    
    .checkbox-label {
        font-size: 10px;
    }
    
    .faq-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .faq-question {
        font-size: 10px;
    }
    
    .faq-answer {
        font-size: 9px;
    }
}

/* Responsive styles */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-left {
        margin-bottom: 20px;
    }
    
    .contacts-card {
        width: 100%;
        max-width: 560px;
    }
    
    .contacts-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contacts-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contacts-title {
        margin-bottom: 15px;
    }
    
    .consult-button {
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .social-buttons {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-logo {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 400px) {
    .footer-logo {
        height: 40px;
    }
}

/* Final override to ensure footer is always centered in responsive views */
@media (max-width: 992px) {
    .footer .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .footer .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
}
}