/* ===================================
   MONEYRIA STREAM - LUXURY PREMIUM CSS
   Modern Austrian Language School
   Design Style: Luxury & Premium
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2c2c2c;
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
  overflow-x: hidden;
}

/* ===================================
   LUXURY TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #C8102E 0%, #8b0a1f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(200, 16, 46, 0.1);
}

h2 {
  font-size: 38px;
  color: #1C4587;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #C8102E 0%, #D4AF37 100%);
  border-radius: 2px;
}

h3 {
  font-size: 28px;
  color: #1C4587;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4a4a4a;
}

.tagline {
  font-size: 24px;
  font-style: italic;
  color: #C8102E;
  font-family: 'Merriweather', serif;
  margin-bottom: 24px;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  background: linear-gradient(135deg, #1C4587 0%, #0d2847 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(28, 69, 135, 0.2);
  position: static;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #D4AF37;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: #F5F5DC;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37 0%, #FFD700 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

.main-nav a:hover::before {
  width: 80%;
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C8102E 0%, #8b0a1f 100%);
  color: white;
  border: 2px solid #D4AF37;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #8b0a1f 0%, #C8102E 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1C4587 0%, #0d2847 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 3px solid #D4AF37;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(200, 16, 46, 0.9);
  color: white;
  border: 2px solid #D4AF37;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C8102E;
  transform: rotate(90deg);
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  color: #F5F5DC;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.15);
  border-left-color: #D4AF37;
  padding-left: 28px;
  color: #D4AF37;
}

/* ===================================
   HERO SECTIONS
   =================================== */
.hero {
  background: linear-gradient(135deg, #1C4587 0%, #C8102E 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 245, 220, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: white;
}

.hero p {
  font-size: 18px;
  color: #F5F5DC;
  max-width: 700px;
  margin: 0 auto 32px;
}

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

/* ===================================
   BUTTONS - LUXURY STYLE
   =================================== */
.btn-primary,
.btn-secondary,
.btn {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #C8102E 0%, #8b0a1f 100%);
  color: white;
  border-color: #D4AF37;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8b0a1f 0%, #C8102E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.3);
}

.btn {
  background: linear-gradient(135deg, #1C4587 0%, #0d2847 100%);
  color: white;
  border-color: #D4AF37;
  box-shadow: 0 4px 15px rgba(28, 69, 135, 0.3);
}

.btn:hover {
  background: linear-gradient(135deg, #0d2847 0%, #1C4587 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(28, 69, 135, 0.4);
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.page-hero {
  background: linear-gradient(135deg, #1C4587 0%, #C8102E 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 4px solid #D4AF37;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: white;
}

.page-hero p {
  font-size: 18px;
  color: #F5F5DC;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   CARDS - LUXURY DESIGN
   =================================== */
.card,
.service-card,
.course-card,
.benefit-cards .card,
.testimonial-card,
.category-card,
.principle-card,
.article-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(28, 69, 135, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 24px;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8102E 0%, #D4AF37 50%, #1C4587 100%);
  border-radius: 12px 12px 0 0;
}

.card:hover,
.service-card:hover,
.course-card:hover,
.category-card:hover,
.principle-card:hover,
.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.2);
  border-color: #D4AF37;
}

.card h3,
.service-card h3,
.course-card h3 {
  color: #1C4587;
  margin-bottom: 16px;
  font-size: 24px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #C8102E;
  margin: 20px 0;
  font-family: 'Merriweather', serif;
}

/* ===================================
   GRID LAYOUTS - FLEXBOX ONLY
   =================================== */
.benefit-cards,
.services-grid,
.course-grid,
.comparison-grid,
.category-grid,
.principles-grid,
.article-grid,
.contact-grid,
.vocab-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-cards .card,
.services-grid .service-card,
.course-grid .course-card,
.comparison-grid .comparison-card,
.category-grid .category-card,
.principles-grid .principle-card,
.article-grid .article-card,
.contact-grid .contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.vocab-grid .vocab-card,
.links-grid .link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 200px;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */
.testimonials {
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #ffffff;
  border-left: 6px solid #D4AF37;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(28, 69, 135, 0.15);
}

.testimonial-card p {
  font-style: italic;
  font-size: 16px;
  color: #2c2c2c;
  line-height: 1.8;
  margin-bottom: 20px;
}

.student-name {
  font-weight: 700;
  color: #1C4587;
  font-style: normal;
  font-size: 14px;
  text-align: right;
  margin-top: 16px;
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, #C8102E 0%, #1C4587 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 24px;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  font-size: 18px;
  color: #F5F5DC;
  margin-bottom: 32px;
}

/* ===================================
   COMPARISON COLUMNS
   =================================== */
.comparison-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.comparison-columns .column {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(28, 69, 135, 0.1);
  border-top: 4px solid #D4AF37;
}

.comparison-columns h3 {
  color: #C8102E;
  margin-bottom: 24px;
  font-size: 26px;
}

.comparison-columns ul {
  list-style: none;
  padding: 0;
}

.comparison-columns li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4a4a4a;
  line-height: 1.6;
}

.comparison-columns li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   VOCABULARY SHOWCASE
   =================================== */
.vocab-card {
  background: linear-gradient(135deg, #1C4587 0%, #0d2847 100%);
  color: white;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(28, 69, 135, 0.2);
  transition: all 0.3s ease;
  border: 2px solid #D4AF37;
}

.vocab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  border-color: #FFD700;
}

.vocab-card strong {
  display: block;
  font-size: 20px;
  color: #D4AF37;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}

/* ===================================
   LEGAL CONTENT
   =================================== */
.legal-content {
  background: white;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #4a4a4a;
}

/* ===================================
   CONTACT & LOCATION
   =================================== */
.contact-card {
  text-align: center;
  padding: 40px 32px;
}

.contact-card h3 {
  color: #C8102E;
  margin-bottom: 16px;
}

.form-note {
  background: linear-gradient(135deg, #F5F5DC 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 12px;
  margin-top: 32px;
  border-left: 6px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(28, 69, 135, 0.1);
}

/* ===================================
   BLOG & ARTICLES
   =================================== */
.date {
  color: #C8102E;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-more {
  color: #1C4587;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #C8102E;
  transform: translateX(4px);
}

/* ===================================
   ERROR & THANK YOU PAGES
   =================================== */
.error-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #1C4587 0%, #C8102E 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.error-hero h1,
.thank-you-hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  font-size: 64px;
  margin-bottom: 24px;
}

.links-grid,
.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
  padding: 32px;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  color: #1C4587;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(28, 69, 135, 0.1);
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.2);
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: linear-gradient(135deg, #0d2847 0%, #1C4587 100%);
  color: #F5F5DC;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 4px solid #D4AF37;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.footer-brand p {
  color: #F5F5DC;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 300px;
}

.footer-nav a {
  color: #F5F5DC;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: #F5F5DC;
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1C4587 0%, #0d2847 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #D4AF37;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  color: #F5F5DC;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  border: 2px solid #D4AF37;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #C8102E 0%, #8b0a1f 100%);
  color: white;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #8b0a1f 0%, #C8102E 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: #F5F5DC;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #FFD700;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid #D4AF37;
}

.cookie-modal h3 {
  color: #1C4587;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f8f6f0;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #D4AF37;
}

.cookie-category label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #2c2c2c;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  .tagline { font-size: 18px; }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Header */
  header .container {
    justify-content: center;
  }
  
  /* Hero */
  .hero {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Cards */
  .benefit-cards .card,
  .services-grid .service-card,
  .course-grid .course-card,
  .comparison-grid .comparison-card,
  .category-grid .category-card,
  .principles-grid .principle-card,
  .article-grid .article-card,
  .contact-grid .contact-card {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .comparison-columns .column {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 40px 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .card,
  .service-card,
  .course-card {
    padding: 24px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.service-card,
.course-card,
.article-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
}