/* =================================================================
   MediaMeister Academy - Professional Corporate Design System
   Professional blue/gray palette with structured, business aesthetic
   ================================================================= */

/* CSS RESET & BASE STYLES */
* {
  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', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a237e;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #34495e;
}

a {
  color: #1a237e;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff6f00;
}

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

ul {
  list-style: none;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #1a237e;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(26, 35, 126, 0.2);
}

.btn-primary:hover {
  background-color: #0d1644;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(26, 35, 126, 0.3);
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1a237e;
  border: 2px solid #1a237e;
}

.btn-secondary:hover {
  background-color: #1a237e;
  color: #ffffff;
  transform: translateY(-2px);
}

.cta-button {
  background-color: #ff6f00;
  color: #ffffff;
}

.cta-button:hover {
  background-color: #e65100;
  color: #ffffff;
  transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1a237e;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #0d1644;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1a237e;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #ff6f00;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #1a237e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f5f5f5;
  color: #ff6f00;
  padding-left: 30px;
}

/* HEADER */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-menu li {
  display: inline-block;
}

.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #34495e;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #1a237e;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #e3f2fd;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-size: 14px;
  color: #e3f2fd;
}

/* HERO INTERNAL */
.hero-internal {
  background-color: #e8eaf6;
  padding: 60px 20px 40px;
  margin-bottom: 40px;
}

.hero-internal h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #5c6bc0;
}

.breadcrumb a {
  color: #1a237e;
}

.breadcrumb a:hover {
  color: #ff6f00;
}

/* SECTIONS */
.value-proposition,
.services-preview,
.process,
.testimonials,
.stats,
.cta-final,
.courses,
.mission,
.story,
.team,
.guarantee,
.success-featured,
.transformation-timeline,
.blog-featured,
.blog-grid,
.contact-options,
.contact-form,
.contact-info {
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5c6bc0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.value-proposition h2,
.services-preview h2,
.process h2,
.testimonials h2,
.cta-final h2,
.mission h2,
.story h2,
.team h2,
.guarantee h2,
.blog-grid h2,
.contact-options h2 {
  text-align: center;
  margin-bottom: 16px;
}

/* FLEXBOX GRID LAYOUTS */
.benefits-grid,
.services-grid,
.process-steps,
.testimonial-grid,
.stats-grid,
.values-grid,
.milestones,
.team-grid,
.guarantee-grid,
.stories-grid,
.timeline,
.articles-grid,
.options-grid,
.info-grid,
.links-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* CARDS */
.benefit-card,
.service-card,
.step,
.testimonial-card,
.stat-item,
.value-card,
.milestone,
.team-member,
.guarantee-item,
.story-card,
.timeline-item,
.article-card,
.option-card,
.info-block,
.link-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 24px;
}

.benefit-card:hover,
.service-card:hover,
.article-card:hover,
.option-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card img,
.option-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.benefit-card h3,
.service-card h3,
.step h3,
.value-card h3,
.guarantee-item h3,
.option-card h3,
.link-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a237e;
}

/* SERVICE CARDS */
.service-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.service-meta .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ff6f00;
}

.service-meta .highlights {
  font-size: 14px;
  color: #5c6bc0;
}

/* PROCESS STEPS */
.step {
  position: relative;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #e8eaf6;
}

/* TESTIMONIALS */
.testimonial-card {
  background-color: #f8f9fa;
  border-left: 4px solid #ff6f00;
  padding: 32px;
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 0;
}

.testimonial-author .role,
.testimonial-author .result {
  font-size: 14px;
  color: #5c6bc0;
  margin-bottom: 0;
}

/* STATS */
.stats {
  background-color: #1a237e;
  color: #ffffff;
  padding: 60px 20px;
}

.stat-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffd54f;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #e3f2fd;
}

/* CTA SECTIONS */
.cta-final,
.cta-courses,
.cta-about,
.cta-success,
.cta-blog,
.cta-contact {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-final h2,
.cta-courses h2,
.cta-about h2,
.cta-success h2,
.cta-blog h2,
.cta-contact h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.urgency {
  font-size: 14px;
  color: #ffd54f;
  font-weight: 600;
  margin-top: 16px;
}

/* COURSE DETAILS */
.course-detail {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.course-detail h2 {
  color: #1a237e;
  margin-bottom: 16px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.level,
.duration,
.category {
  display: inline-block;
  padding: 6px 12px;
  background-color: #e8eaf6;
  color: #1a237e;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.course-detail ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
}

.course-detail li {
  margin-bottom: 8px;
  color: #34495e;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #e0e0e0;
}

.course-footer .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #ff6f00;
}

.course-premium {
  border: 3px solid #ffd54f;
  background: linear-gradient(135deg, #ffffff 0%, #fef5e7 100%);
}

.note {
  font-size: 14px;
  color: #5c6bc0;
  font-style: italic;
  margin-top: 8px;
}

/* MISSION & STORY */
.values-grid {
  margin-top: 40px;
}

.value-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
}

.milestones {
  margin-top: 40px;
}

.milestone {
  text-align: center;
  background-color: #e8eaf6;
  flex: 1 1 calc(25% - 24px);
  min-width: 180px;
}

.milestone .year {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 12px;
}

/* TEAM */
.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.team-member .role {
  font-size: 16px;
  color: #ff6f00;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-member .expertise {
  font-size: 14px;
  color: #5c6bc0;
  font-weight: 600;
  margin-top: 16px;
}

/* SUCCESS STORIES */
.success-story {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.story-meta {
  background-color: #e8eaf6;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.story-meta p {
  margin-bottom: 8px;
}

blockquote {
  font-style: italic;
  font-size: 18px;
  color: #2c3e50;
  padding: 24px;
  background-color: #f8f9fa;
  border-left: 4px solid #ff6f00;
  margin: 24px 0;
}

.story-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.story-card .niche {
  font-size: 14px;
  color: #5c6bc0;
  font-weight: 600;
  margin-bottom: 8px;
}

.story-card .result {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ff6f00;
  margin-bottom: 16px;
}

/* TIMELINE */
.timeline {
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  flex: 1 1 100%;
}

.timeline-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 8px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #ff6f00;
  border-radius: 50%;
}

/* BLOG */
.featured-article {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.featured-article h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.article-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.category {
  display: inline-block;
  padding: 6px 12px;
  background-color: #ff6f00;
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #5c6bc0;
  margin-top: 16px;
}

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

.form-note {
  background-color: #e8eaf6;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
}

.form-note a {
  color: #1a237e;
  font-weight: 600;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4caf50;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.stats-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
  font-size: 16px;
  color: #5c6bc0;
}

/* LEGAL PAGES */
.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #1a237e;
}

/* FOOTER */
footer {
  background-color: #263238;
  color: #eceff1;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-about p,
.footer-contact p {
  color: #b0bec5;
  font-size: 14px;
  line-height: 1.6;
}

footer h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #b0bec5;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd54f;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #37474f;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  color: #b0bec5;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #ffd54f;
}

.copyright {
  font-size: 14px;
  color: #78909c;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #263238;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-text p {
  margin-bottom: 8px;
  color: #eceff1;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #4caf50;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #388e3c;
}

.cookie-reject {
  background-color: #f44336;
  color: #ffffff;
}

.cookie-reject:hover {
  background-color: #d32f2f;
}

.cookie-settings {
  background-color: transparent;
  color: #ffd54f;
  border: 1px solid #ffd54f;
}

.cookie-settings:hover {
  background-color: #ffd54f;
  color: #263238;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1003;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #263238;
  cursor: pointer;
  padding: 8px;
}

.cookie-preference {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-preference h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #1a237e;
}

.cookie-preference p {
  font-size: 14px;
  color: #5c6bc0;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #4caf50;
}

.cookie-toggle.disabled {
  background-color: #e0e0e0;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-save-btn {
  width: 100%;
  padding: 14px;
  background-color: #1a237e;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-save-btn:hover {
  background-color: #0d1644;
}

/* RESPONSIVE DESIGN - TABLET */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .main-nav .cta-button {
    display: none;
  }
  
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .benefit-card,
  .service-card,
  .stat-item,
  .value-card,
  .milestone,
  .team-member,
  .story-card,
  .article-card,
  .option-card,
  .link-card {
    flex: 1 1 100%;
  }
  
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .content-wrapper {
    padding: 24px;
  }
}

/* RESPONSIVE DESIGN - MOBILE */
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn-primary,
  .btn-secondary,
  .cta-button {
    width: 100%;
    display: block;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .course-detail {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .service-meta .price {
    font-size: 28px;
  }
  
  .course-footer {
    flex-direction: column;
  }
  
  .course-footer .price {
    font-size: 32px;
  }
  
  .featured-article {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}