/* ===========================================
   British English School - Main Stylesheet
   =========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600;700;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #053A97;
    --navy-light: #053A97;
    --red: #8B1538;
    --red-hover: #d00c08;
    --gold: #C5A46D;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --radius: 15px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* ===========================================
   Header & Navigation
   =========================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--navy);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Nav button specific styles */
.nav-menu .btn {
    padding: 12px 24px;
}

.nav-menu .btn::after {
    display: none;
}

.nav-menu .btn.btn-primary {
    background: var(--red) !important;
    color: var(--white) !important;
    border: none !important;
}

.nav-menu .btn.btn-primary:hover {
    background: var(--red-hover) !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--navy);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.mobile-nav.active {
    display: flex;
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}
/* FIX: text alb pe cardurile WHY (doar aici) */
.why-bes-grid .why-card,
.why-bes-grid .why-card * {
  color: #fff !important;
}

.why-bes-grid .why-card p {
  color: rgba(255,255,255,0.9) !important;
}

.why-bes-grid .why-card h3 {
  color: var(--gold) !important;
}.why-bes-grid .why-card {
  background: #fff !important;
  border: 2px solid rgba(0,0,0,0.08) !important;
}

.why-bes-grid .why-card,
.why-bes-grid .why-card * {
  color: var(--text-dark) !important;
}

.why-bes-grid .why-card p {
  color: var(--text-gray) !important;
}

.why-bes-grid .why-card h3 {
  color: var(--navy) !important;
}


/* ===========================================
   Hero Section
   =========================================== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-image {
        order: -1;
    }
}

/* ===========================================
   Quick Nav
   =========================================== */
.quick-nav {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius);
}

.quick-nav-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px;
}

.quick-nav a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-nav a:hover {
    background: var(--light-bg);
    color: var(--navy);
}

/* ===========================================
   Sections General
   =========================================== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light-bg);
}

.section-navy {
    background: var(--navy);
    color: var(--white);
}

.section-title {
    font-size: 42px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 20px;
}

.section-navy .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-navy .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================================
   Features Grid
   =========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   Why BES Section (Navy Cards)
   =========================================== */
.why-bes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--navy-light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(5, 58, 151, 0.8);
}

.why-card-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
}

.why-card p {
    opacity: 0.9;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .why-bes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-bes-grid {
        grid-template-columns: 1fr;
    }
}



/* ===========================================
   perioada curs 
   =========================================== */


.course-period {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6b7280;
}
.course-period span {
  font-weight: 600;
}


/* ===========================================
   Content Section (2 Columns)
   =========================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

.content-text h2 {
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 20px;
}

.content-text p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.check-list {
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-gray);
}

.check-list li::before {
    content: '✓';
    color: var(--red);
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-grid.reverse {
    direction: ltr;
  }

  /* Fix: pe mobil, imaginea înaintea textului DOAR pentru reverse */
  .content-grid.reverse .content-image {
    order: -1;
  }

  .content-grid.reverse .content-text {
    order: 0;
  }
}


/* ===========================================
   Partners Section
   =========================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    max-height: 80px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(0);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   Info Cards Section
   =========================================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.info-card {
    padding: 30px;
}

.info-card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-gray);
    font-size: 15px;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   Courses Cards
   =========================================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.course-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.course-card-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.course-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
}

.course-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card-body p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.course-card-body ul {
    margin-bottom: 25px;
    flex: 1;
}

.course-card-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.course-card-body li::before {
    content: '✓';
    color: var(--red);
    font-weight: bold;
}

.course-card-footer {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.course-card-footer .btn {
    flex: 1;
    text-align: center;
}

@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   Trust Section
   =========================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
}

.trust-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 15px;
}

.trust-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   CTA Section
   =========================================== */
.cta {
    background: linear-gradient(135deg, var(--red) 0%, #a01d45 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--white);
    color: var(--red);
}

.cta .btn:hover {
    background: var(--gold);
    color: var(--white);
}

/* ===========================================
   Contact Form
   =========================================== */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 17px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.contact-item span {
    color: var(--text-gray);
    font-size: 16px;
}

.contact-item a {
    color: var(--navy);
    font-weight: 600;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Contact page: fix aliniere label + valoare (pentru h3 + p) ===== */

/* Neutralizează spacing-ul mare doar în contact list */
.contact-info .contact-item p{
  margin: 0;                 /* override la margin-bottom:30px */
  font-size: 16px;
  color: var(--text-gray);
}

/* Label (Email/Telefon/Adresă/Program) */
.contact-info .contact-item h3{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 110px;          /* coloana de label */
  line-height: 1.4;
}

/* Aliniere corectă pe desktop */
.contact-info .contact-item{
  align-items: baseline;      /* în loc de center => nu mai sare textul */
}

/* Pentru câmpuri pe mai multe linii (Adresă/Program) */
.contact-info .contact-item:nth-child(3),
.contact-info .contact-item:nth-child(4){
  align-items: flex-start;    /* sus, arată premium */
}

/* Link-uri în contact */
.contact-info .contact-item a{
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.contact-info .contact-item a:hover{
  text-decoration: underline;
}

/* Mobile: label sus, valoare jos */
@media (max-width: 640px){
  .contact-info .contact-item{
    flex-direction: column;
    gap: 6px;
  }
  .contact-info .contact-item h3{
    min-width: 0;
  }
}
.contact-legal strong{
  font-weight: 600;
  color: var(--text-dark);
}
.contact-legal{
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}


/* ===========================================
   Footer
   =========================================== */
.footer-top {
    background: linear-gradient(135deg, var(--red) 0%, var(--navy) 50%);
    height: 6px;
}

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-brand address {
    font-style: normal;
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    font-size: 15px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-contact-item svg {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-bottom a {
    color: var(--gold);
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.payment-logos img {
    height: 30px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   Modal
   =========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    background: var(--navy);
    color: var(--white);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 22px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 30px;
}

/* ===========================================
   Breadcrumb
   =========================================== */
.breadcrumb {
    background: var(--light-bg);
    padding: 15px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-list a {
    color: var(--navy);
}

.breadcrumb-list span {
    color: var(--text-gray);
}

/* ===========================================
   Page Hero (Inner Pages)
   =========================================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   Utility Classes
   =========================================== */
.text-center {
    text-align: center;
}

.text-navy {
    color: var(--navy);
}

.text-red {
    color: var(--red);
}

.text-gold {
    color: var(--gold);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

/* ===========================================
   Modal Popup
   =========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--navy);
    color: var(--white);
    padding: 25px 30px;
    position: relative;
}

.modal-header h2 {
    font-size: 24px;
    margin: 0;
}

.modal-header p {
    margin: 8px 0 0;
    opacity: 0.9;
    font-size: 14px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 14px;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: var(--navy);
}

.modal-body textarea {
    min-height: 100px;
    resize: vertical;
}

.modal-body .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.modal-body .form-note {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 15px;
    text-align: center;
}

@media (max-width: 576px) {
    .modal {
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* ===========================================
   Partner Pages
   =========================================== */
.hero-small {
    padding: 50px 0;
}

.hero-small .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-small .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.hero-small .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.hero-small .breadcrumb a:hover {
    color: var(--white);
}

.hero-small .breadcrumb span {
    color: var(--gold);
}

.partner-logo-section {
    padding: 60px 0;
    background: var(--white);
}

.partner-logo-box {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.partner-main-logo {
    max-height: 150px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background: var(--light-bg);
}

.content-section h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
}

.content-section p {
    color: var(--text-gray);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.rounded-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-white {
    color: var(--white) !important;
}

.why-section {
    background: var(--navy);
    padding: 80px 0;
    color: var(--white);
}

.why-section .feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-section .feature-card h3 {
    color: var(--gold);
}

.why-section .feature-card p {
    color: rgba(255, 255, 255, 0.9);
}

.why-section .feature-icon {
    background: var(--gold);
    color: var(--navy);
}

.certificate-display {
    max-width: 600px;
    margin: 0 auto;
}

.certificate-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--navy);
}

.certificate-info h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 25px;
}

.certificate-info p {
    margin-bottom: 12px;
    color: var(--text-gray);
}

.certificate-info .btn {
    margin-top: 25px;
}

.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #a01d45 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--red);
}

.btn-white:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--red);
}

/* Footer Logo Fix */
.footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 18px;
}

.footer-address {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.8;
}

/* Partners clickable cards */
.partners-grid a {
    display: block;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.partners-grid a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* GSE Comparison */
.gse-comparison {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.gse-comparison h4 {
    color: var(--navy);
    margin-bottom: 20px;
}

/* ===========================================
   Success/Error Messages
   =========================================== */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===========================================
   Course Info Pages (YLE, KET, PET, FCE, CAE)
   =========================================== */
.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--light-bg);
}

.course-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.course-info-content h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 20px;
}

.course-info-content h3 {
    font-size: 22px;
    color: var(--navy);
    margin: 30px 0 15px;
}

.course-info-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.course-info-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-gold {
    background: var(--gold);
    color: var(--white);
}

.badge-navy {
    background: var(--navy);
    color: var(--white);
}

.checklist {
    list-style: none;
    margin: 20px 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.checklist li::before {
    content: '✓';
    color: var(--red);
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.pricing-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--navy);
}

.pricing-card.featured {
    background: var(--navy);
    color: var(--white);
}

.pricing-card.featured .price {
    color: var(--gold);
}

.pricing-card h4 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.pricing-card.featured h4 {
    color: var(--white);
}

.pricing-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 14px;
    opacity: 0.9;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .course-info-grid {
        grid-template-columns: 1fr;
    }
    
    .course-info-image {
        order: -1;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   Error/Thank You Pages
   =========================================== */
.error-section,
.thank-you-section {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content,
.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-content h1 {
    font-size: 120px;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2,
.thank-you-content h1 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
}

.error-content p,
.thank-you-content p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 15px;
}

.error-actions,
.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

/* ===========================================
   Legal Pages
   =========================================== */
.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 30px;
    text-align: center;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--navy);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--navy);
    margin: 30px 0 15px;
}

.legal-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 15px 30px;
    color: var(--text-gray);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.last-updated {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 40px;
    text-align: center;
}

/* ===========================================
   Careers Page
   =========================================== */
.careers-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.careers-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.careers-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.job-listing {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.job-listing:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.job-listing h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-meta span {
    color: var(--text-gray);
    font-size: 14px;
}

.job-listing p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===========================================
   Exam Section (YLE, KET, PET, FCE, CAE pages) =========================================== */ .exam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; } .exam-card { background: rgba(255, 255, 255, 0.1); padding: 35px 25px; border-radius: var(--radius); text-align: center; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; } .exam-card:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-5px); } .exam-icon { font-size: 48px; margin-bottom: 20px; } .exam-card h3 { color: var(--gold); font-size: 22px; margin-bottom: 15px; } .exam-card p { color: rgba(255, 255, 255, 0.9); line-height: 1.6; } .info-list { list-style: none; margin: 20px 0; } .info-list li { padding: 10px 0; border-bottom: 1px solid #eee; color: var(--text-gray); } .info-list li:last-child { border-bottom: none; } .info-list strong { color: var(--navy); } .text-white { color: var(--white) !important; } @media (max-width: 768px) { .exam-grid { grid-template-columns: 1fr; } } asta am acum in cscs
/* WHY BES – mobile layout fix */
@media (max-width: 768px) {
  .why-bes-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Partners – make cards equal height & center logos consistently */
.partners-grid {
  align-items: stretch;
}


.partner-card img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-card {
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background: #fff;
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* ===== YLE – Details blocks (clean, BES style) ===== */
.yle-details{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:24px;
  margin: 28px 0 18px;
  align-items:start;
}

.yle-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.06);
  padding: 22px 22px;
}

.yle-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--navy);
}

.yle-kv {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 10px;
  column-gap: 14px;
  font-size: 15px;
  color: var(--text-gray);
}

.yle-kv strong {
  color: var(--text-dark);
  font-weight: 700;
}

.yle-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  margin: 6px 0 6px;
  line-height: 1.1;
}

.yle-price-sub {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 14px;
}

.yle-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-gray);
  font-size: 15px;
}

.yle-list li { margin: 8px 0; }

.payment-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .yle-details { grid-template-columns: 1fr; }
  .yle-kv { grid-template-columns: 1fr; }
}
/* ===== YLE DETAILS – mobile hard fix ===== */
@media (max-width: 900px) {
  .yle-details { grid-template-columns: 1fr !important; }
  .yle-kv { grid-template-columns: 1fr; }

  .yle-kv strong {
    display: block !important;
    margin-top: 12px !important;
  }

  .yle-kv span {
    display: block !important;
    margin-top: 4px !important;
  }
}


/* ===== YLE Facts – clean, not “receipt” ===== */
.yle-facts{
  margin-top: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.06);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
margin-bottom: 36px;
}

.yle-facts h3{
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--navy);
}

.yle-facts-list{
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-gray);
  font-size: 15px;
}
.yle-facts-list li span {
  color: var(--text-gray);
}


.yle-facts-list li{
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.yle-facts-list li:last-child{ border-bottom: 0; }
.yle-facts-list strong{ color: var(--text-dark); }

.yle-price-block{
  background: var(--light-bg);
  border-radius: 15px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.06);
 border-left: 4px solid var(--navy);
}

.yle-price-label{
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.yle-price{
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.05;
}

.yle-price-sub{
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-gray);
}

.yle-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.yle-chip{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-dark);
}

.payment-note{
  margin-top: 12px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}

@media (max-width: 992px){
  .yle-facts{ grid-template-columns: 1fr; }
}
.exam-note{
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
@media (max-width: 768px) {
  .course-info-content > .btn.btn-primary {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 0; /* sus, stânga-dreapta auto => centrat */
    text-align: center;
  }
}@media (max-width: 768px) {
  .badge {
    margin-top: 16px;
    margin-bottom: 16px;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .badge {
    margin-top: 16px;
    margin-bottom: 16px;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .section-title {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* Mobile polish (safe, minimal) */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .badge { margin: 16px 0; display: inline-block; }
  .course-info-image { margin-bottom: 12px; }
}
.premium-box {
  background: rgba(197, 164, 109, 0.1);
  border: 1px solid rgba(197, 164, 109, 0.4);
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 30px;
}

.premium-box-compact{
  margin-top: 18px;
  padding: 18px;
  background: rgba(197, 164, 109, 0.10);
  border: 1px solid rgba(197, 164, 109, 0.35);
  border-radius: var(--radius);
}

.premium-box-compact .checklist{
  margin: 12px 0 0;
}

.premium-box-compact .premium-price{
  margin-top: 12px;
  font-weight: 700;
  color: var(--gold);
}

/* PET / FCE / CAE – exam grid cu 4 carduri */
.exam-grid.exam-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .exam-grid.exam-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .exam-grid.exam-grid-4 {
    grid-template-columns: 1fr;
  }
}
/* PET Premium – polish final */
.premium-row{
  margin-top: 18px;
}

.premium-box-inline{
  padding: 18px 22px;
  background: rgba(197, 164, 109, 0.08);
  border: 1px solid rgba(197, 164, 109, 0.30);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
margin-bottom: 28px;
}

/* badge mai “chip”, nu label mare */
.premium-box-inline .badge{
  background: rgba(197,164,109,0.18);
  color: #7a5c2a;
  margin: 0 0 12px 0;
  padding: 7px 12px;
  font-size: 14px;
  border-radius: 999px;
}

/* listă în 2 coloane, cu spațiere controlată */
.premium-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;            /* mai aerisit pe orizontală */
  font-size: 14px;
  color: var(--text-gray);
}

.premium-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
  margin: 0;                 /* important: nu moștenește spacing */
}

.premium-list li::before{
  content: "✓";
  color: var(--red);
  font-weight: 800;
  margin-top: 1px;
}

/* Preț: aliniat frumos jos */
.premium-box-inline .premium-price{
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(197,164,109,0.25);
  font-weight: 900;
  color: #7a5c2a;            /* mai premium decât gold strident */
  font-size: 14px;
}

/* Mobile: o coloană */
@media (max-width: 768px){
  .premium-list{ grid-template-columns: 1fr; }
}
.premium-note{
  font-size: 14px;
  color: var(--text-gray);
  margin: 6px 0 12px;
}

/* Premium – mobile alignment */
@media (max-width: 768px){
  .premium-box-inline{
    text-align: center;
  }

  /* badge centrat */
  .premium-box-inline .badge{
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  /* text recomandare centrat */
  .premium-box-inline .premium-note{
    text-align: center;
  }

  /* lista rămâne stânga (mai profesionist) */
  .premium-box-inline .premium-list{
    text-align: left;
    margin-top: 12px;
  }

  /* preț centrat */
  .premium-box-inline .premium-price{
    text-align: center;
  }
}
/* ===========================================
   Legal Tables (GDPR)
   =========================================== */

.table-wrap {
    overflow-x: auto;
    margin: 30px 0 40px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.legal-table thead th {
    background-color: var(--navy);
    color: #ffffff;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.legal-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-gray);
    border-top: 1px solid #e5e7eb;
    vertical-align: top;
}

.legal-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Mobile */
@media (max-width: 768px) {
    .legal-table {
        min-width: 520px;
    }
}


/* Adults pricing grid: desktop 2 columns, mobile 1 column */
.courses-grid.courses-grid-pricing{
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 992px){
  .courses-grid.courses-grid-pricing{
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    gap: 26px;
  }
}
