/* ============================================
   VerkaufsText Akademie - Main Stylesheet
   Based on template143.xml design system
   ============================================ */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-navy: #263470;
  --color-orange: #E67E50;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-gray-light: #f5f5f5;
  --color-gray: #666666;
  --color-gray-dark: #333333;
  
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* === HEADER === */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 50px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--color-gray-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link--active {
  color: var(--color-navy);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 4px;
  font-weight: 500;
}

.nav-phone-link:hover {
  background: var(--color-orange);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--color-navy);
  transition: var(--transition);
}

/* === HERO SECTION === */
.hero-section {
  margin-top: 80px;
  min-height: 600px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-image-col {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text-col {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4rem;
  display: flex;
  align-items: center;
}

.hero-content-wrapper {
  width: 100%;
}

.hero-meta {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.meta-separator {
  margin: 0 0.5rem;
}

.hero-accent {
  margin-bottom: 1.5rem;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: var(--color-orange);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: 0.875rem;
  margin-top: 2rem;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* === CONSTRUCTION LINE (DIVIDER) === */
.construction-line {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
}

.construction-line .line {
  height: 1px;
  background: #e0e0e0;
}

/* === SECTION COMMON STYLES === */
.section-identifier {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.about-datum-line {
  width: 60px;
  height: 3px;
  background: var(--color-orange);
  margin-bottom: 1.5rem;
}

/* === WHY SECTION === */
.why-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  width: 100%;
  border-radius: 8px;
}

.why-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.why-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--color-gray-dark);
}

.why-text-col p {
  margin-bottom: 1rem;
  color: var(--color-gray);
}

/* === COURSES SECTION === */
.courses-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.courses-header {
  text-align: center;
  margin-bottom: 3rem;
}

.courses-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.courses-lead {
  font-size: 1.125rem;
  color: var(--color-gray);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.course-card {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.course-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.course-card--featured {
  border-color: var(--color-orange);
  border-width: 2px;
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.course-icon {
  font-size: 2.5rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.course-description {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.course-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.course-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray);
  font-size: 0.875rem;
}

.course-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
}

/* === BENEFITS SECTION === */
.benefits-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-navy);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--color-gray-dark);
}

.benefits-list i {
  color: var(--color-orange);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.benefits-image {
  width: 100%;
  border-radius: 8px;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--color-navy);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-gray-light);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--color-orange);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-gray-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author strong {
  display: block;
  color: var(--color-navy);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--color-gray);
  font-size: 0.875rem;
}

/* === PROCESS SECTION === */
.process-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.process-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.process-step:last-child {
  border-bottom: none;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-orange);
  min-width: 80px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.step-description {
  color: var(--color-gray);
  line-height: 1.6;
}

/* === FAQ SECTION === */
.faq-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.faq-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--color-navy);
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-orange);
}

.faq-icon {
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--color-gray);
  line-height: 1.8;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--color-gray-light);
  padding: 4rem 2rem;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.cta-text {
  font-size: 1.125rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn--primary:hover {
  background: #d66d40;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn--secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--full {
  width: 100%;
}

/* === FOOTER === */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-orange);
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--color-orange);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--color-orange);
  margin-top: 0.25rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* === COOKIE CONSENT === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-consent__text {
  flex: 1;
}

.cookie-consent__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent__link {
  color: var(--color-orange);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 1rem;
}

.cookie-consent__btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-consent__btn--reject {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.cookie-consent__btn--reject:hover {
  border-color: var(--color-white);
}

.cookie-consent__btn--accept {
  background: var(--color-orange);
  color: var(--color-white);
}

.cookie-consent__btn--accept:hover {
  background: #d66d40;
}

/* === CONTACT PAGE === */
.contact-hero-section {
  margin-top: 80px;
  padding: 4rem 2rem;
  text-align: center;
  background: var(--color-gray-light);
}

.contact-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.contact-hero-lead {
  font-size: 1.125rem;
  color: var(--color-gray);
  line-height: 1.8;
}

.contact-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.contact-form-title,
.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-navy);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-gray-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-orange);
}

.form-textarea {
  resize: vertical;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
}

.form-note {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-top: 1rem;
}

.contact-info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-light);
  border-radius: 50%;
  color: var(--color-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.contact-info-note {
  font-size: 0.875rem;
  color: var(--color-gray);
}

.contact-social {
  margin-top: 2rem;
}

.contact-social-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.social-links {
  display: flex;
  gap: 1rem;
}

/* === LEGAL PAGES === */
.legal-content-section {
  margin-top: 80px;
  padding: 4rem 2rem;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.legal-intro {
  font-size: 1.125rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  color: var(--color-gray-dark);
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--color-gray-dark);
}

.legal-section ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

.legal-section a {
  color: var(--color-orange);
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--color-navy);
}

.legal-back-link {
  margin-top: 3rem;
  text-align: center;
}

/* === COOKIE CONTROLS === */
.cookie-controls {
  background: var(--color-gray-light);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.cookie-controls h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-navy);
}

.cookie-toggle-group {
  margin-bottom: 2rem;
}

.cookie-toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.cookie-toggle-info {
  flex: 1;
  padding-right: 2rem;
}

.cookie-toggle-info strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.cookie-toggle-info p {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin: 0;
}

.cookie-toggle-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-toggle-switch input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle-switch input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

/* === MESSAGE PAGE (send.php) === */
.message-section {
  margin-top: 80px;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-container {
  max-width: 600px;
  text-align: center;
}

.message-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.message-icon--success {
  color: #4caf50;
}

.message-icon--error {
  color: #f44336;
}

.message-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.message-content {
  font-size: 1.125rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.message-content strong {
  color: var(--color-navy);
}

.message-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.error-list {
  list-style: disc;
  text-align: left;
  margin: 1rem auto;
  max-width: 400px;
}

.error-list li {
  margin-bottom: 0.5rem;
  color: #f44336;
}

/* === ABOUT PAGE === */
.about-hero-section {
  margin-top: 80px;
}

.mission-section,
.team-section,
.values-section,
.stats-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.mission-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--color-gray-dark);
}

.mission-text-col p {
  margin-bottom: 1rem;
  color: var(--color-gray);
  line-height: 1.8;
}

.mission-image {
  width: 100%;
  border-radius: 8px;
}

.team-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-navy);
  text-align: center;
}

.team-lead {
  font-size: 1.125rem;
  color: var(--color-gray);
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.team-member {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.team-member-image {
  width: 200px;
  flex-shrink: 0;
}

.team-member-image img {
  width: 100%;
  border-radius: 8px;
}

.team-member-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.team-member-role {
  color: var(--color-orange);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member-bio {
  color: var(--color-gray);
  line-height: 1.8;
}

.values-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--color-navy);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  font-size: 2.5rem;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
}

.value-description {
  color: var(--color-gray);
  line-height: 1.6;
}

.stats-section {
  background: var(--color-navy);
  color: var(--color-white);
}

.stats-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-container,
  .why-container,
  .benefits-container,
  .mission-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .courses-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--color-white);
    flex-direction: column;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  
  .header-nav.active {
    left: 0;
  }
  
  .main-nav-list {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .courses-grid,
  .testimonials-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number {
    min-width: auto;
  }
  
  .team-member {
    flex-direction: column;
  }
  
  .team-member-image {
    width: 100%;
  }
  
  .cookie-consent__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-toggle-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-toggle-info {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .hero-text-col {
    padding: 2rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
