/* ===================================
   SPECTRAON SHIELD - WARM & FRIENDLY DESIGN
   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', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ===================================
   TYPOGRAPHY - WARM & FRIENDLY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F8D;
  margin-bottom: 16px;
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

strong {
  font-weight: 600;
  color: #2C5F8D;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

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

/* ===================================
   HEADER - WARM & WELCOMING
   =================================== */

header {
  background: linear-gradient(135deg, #2C5F8D 0%, #3A7EBD 100%);
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(44, 95, 141, 0.15);
  position: sticky;
  top: 0;
  z-index: 900;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #FFF;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU - WARM DESIGN
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1100;
  background: #E67E22;
  color: #FFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #2C5F8D 0%, #3A7EBD 100%);
  z-index: 1050;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

/* ===================================
   HERO SECTION - WARM & INVITING
   =================================== */

.hero {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFF9F0 100%);
  padding: 80px 20px;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 42px;
  color: #2C5F8D;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

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

.trust-badge {
  display: inline-block;
  background: #E67E22;
  color: #FFF;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

/* ===================================
   BUTTONS - WARM & FRIENDLY
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFF;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
  background: #FFF;
  color: #2C5F8D;
  border: 2px solid #2C5F8D;
}

.btn-secondary:hover {
  background: #2C5F8D;
  color: #FFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.2);
}

/* ===================================
   CARDS & GRIDS - FLEXBOX ONLY
   =================================== */

.features-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.team-grid,
.validity-grid,
.pillars-grid,
.components-grid,
.paths-grid,
.articles-grid,
.contact-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-card,
.service-card,
.testimonial-card,
.stat-item,
.team-member,
.validity-card,
.pillar,
.component,
.path-card,
.article-card,
.contact-card,
.suggestion,
.course-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.feature-card:hover,
.service-card:hover,
.validity-card:hover,
.pillar:hover,
.component:hover,
.path-card:hover,
.article-card:hover,
.contact-card:hover,
.suggestion:hover,
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.15);
}

.feature-card h3,
.service-card h3,
.validity-card h3,
.pillar h3,
.component h3,
.path-card h3,
.course-card h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p,
.service-card p,
.validity-card p,
.pillar p,
.component p,
.path-card p,
.course-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================
   SERVICE/COURSE SPECIFIC STYLES
   =================================== */

.service-price,
.course-price {
  font-size: 28px;
  font-weight: 700;
  color: #E67E22;
  margin-top: 16px;
  display: block;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
  align-items: center;
}

.course-meta span {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 15px;
  background: #FFE8CC;
  color: #2C5F8D;
  font-weight: 500;
}

.course-duration,
.course-cert {
  background: #E8F4F8;
}

/* ===================================
   TESTIMONIALS - READABLE TEXT
   =================================== */

.testimonial-card {
  background: #FFF;
  border-left: 4px solid #E67E22;
  padding: 24px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #2C5F8D;
  font-size: 14px;
  margin-top: 12px;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #E67E22;
  margin-top: 32px;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats {
  background: linear-gradient(135deg, #2C5F8D 0%, #3A7EBD 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.stats-grid {
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 200px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #FFE8CC;
  font-weight: 500;
}

/* ===================================
   PROCESS STEPS - FLEXBOX
   =================================== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.15);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  color: #666;
  font-size: 14px;
}

/* ===================================
   CTA BANNER - WARM & INVITING
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFF9F0 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2 {
  font-size: 32px;
  color: #2C5F8D;
  margin-bottom: 16px;
}

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

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

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

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

/* ===================================
   PAGE HERO - BREADCRUMB
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFF9F0 100%);
  padding: 60px 20px 40px;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

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

.breadcrumb a {
  color: #E67E22;
  text-decoration: underline;
}

.page-hero h1 {
  font-size: 36px;
  color: #2C5F8D;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #555;
}

.highlight {
  display: inline-block;
  background: #E67E22;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 16px;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
}

.value-proposition,
.services-preview,
.process,
.testimonials,
.learning-paths,
.courses-catalog,
.mission-vision,
.story,
.team,
.certifications,
.certification-validity,
.certification-process,
.certificate-features,
.methodology-overview,
.learning-structure,
.platform-features,
.flexibility,
.featured-article,
.blog-grid,
.categories,
.contact-options,
.contact-form-section,
.faq-quick,
.office-info,
.legal-content,
.confirmation-details,
.while-you-wait,
.social-proof,
.next-steps,
.thankyou-hero,
.confirmation-message {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.value-proposition h2,
.services-preview h2,
.process h2,
.testimonials h2,
.learning-paths h2,
.mission-vision h2,
.story h2,
.team h2,
.certifications h2,
.certification-validity h2,
.methodology-overview h2,
.blog-grid h2,
.categories h2,
.contact-options h2,
.confirmation-details h2,
.while-you-wait h2,
.social-proof h2,
.next-steps h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* ===================================
   MISSION/VISION LAYOUT
   =================================== */

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mission,
.vision,
.values {
  background: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.values ul {
  margin-top: 16px;
}

.values li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
}

/* ===================================
   TIMELINE
   =================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.timeline-item {
  background: #FFF;
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid #E67E22;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #555;
}

.timeline-item strong {
  color: #2C5F8D;
  font-size: 18px;
  margin-right: 12px;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-stats {
  text-align: center;
  font-size: 16px;
  color: #E67E22;
  font-weight: 600;
  margin-top: 32px;
}

/* ===================================
   CERTIFICATION FEATURES
   =================================== */

.features-list,
.cert-list,
.flexibility-list {
  background: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 24px;
}

.features-list li,
.cert-list li,
.flexibility-list li {
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  color: #555;
  font-size: 16px;
}

.features-list li:last-child,
.cert-list li:last-child,
.flexibility-list li:last-child {
  border-bottom: none;
}

.dedication {
  text-align: center;
  font-weight: 600;
  color: #E67E22;
  margin-top: 24px;
  font-size: 16px;
}

/* ===================================
   FAQ SECTION
   =================================== */

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

.faq-item {
  background: #FFF;
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #E67E22;
}

.faq-item h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================
   BLOG SPECIFIC STYLES
   =================================== */

.featured-article {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFF9F0 100%);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.article-featured h2 {
  font-size: 28px;
  color: #2C5F8D;
  margin-bottom: 16px;
}

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

.article-meta span {
  padding: 6px 12px;
  background: #FFF;
  border-radius: 12px;
  font-weight: 500;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.categories-list a {
  padding: 12px 20px;
  background: #FFF;
  border-radius: 20px;
  color: #2C5F8D;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.categories-list a:hover {
  background: #E67E22;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-card h3 {
  color: #2C5F8D;
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.form-note {
  background: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.form-note p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-section {
  background: #FFF;
  padding: 32px;
  border-radius: 15px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-section h2 {
  color: #2C5F8D;
  font-size: 22px;
  margin-bottom: 16px;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content .intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 32px;
  color: #2C5F8D;
  font-weight: 600;
}

.last-update {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 8px;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.cookies-table th,
.cookies-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #E0E0E0;
}

.cookies-table th {
  background: #FFE8CC;
  color: #2C5F8D;
  font-weight: 600;
}

.cookies-table td {
  color: #555;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thankyou-hero {
  background: linear-gradient(135deg, #FFE8CC 0%, #FFF9F0 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: #27AE60;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
}

.thankyou-content h1 {
  font-size: 36px;
  color: #2C5F8D;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: #555;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.steps .step {
  background: #FFF;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  color: #555;
  font-size: 15px;
}

.steps .step strong {
  color: #E67E22;
  margin-right: 8px;
}

.response-time {
  text-align: center;
  font-weight: 600;
  color: #27AE60;
  margin-top: 24px;
}

/* ===================================
   FOOTER - WARM & FRIENDLY
   =================================== */

footer {
  background: linear-gradient(135deg, #2C5F8D 0%, #1E4A6F 100%);
  color: #FFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-radius: 30px 30px 0 0;
}

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

.footer-section {
  flex: 1 1 250px;
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #FFE8CC;
  transform: translateX(4px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F8D 0%, #1E4A6F 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #FFF;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-accept {
  background: #E67E22;
  color: #FFF;
}

.cookie-accept:hover {
  background: #D35400;
  transform: translateY(-2px);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-settings {
  background: #FFF;
  color: #2C5F8D;
}

.cookie-settings:hover {
  background: #FFE8CC;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #FFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #2C5F8D;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 16px;
  background: #F8F9FA;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #2C5F8D;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #27AE60;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  margin-top: 8px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Stack cards on mobile */
  .feature-card,
  .service-card,
  .testimonial-card,
  .stat-item,
  .team-member,
  .validity-card,
  .pillar,
  .component,
  .path-card,
  .article-card,
  .contact-card,
  .suggestion,
  .course-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Hero CTA buttons stack */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Footer stacks */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner stacks */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Stats grid - 2 columns on mobile */
  .stats-grid {
    justify-content: center;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 24px);
    min-width: 140px;
  }
  
  /* Process steps - full width on mobile */
  .process-steps {
    flex-direction: column;
  }
  
  /* Padding adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .section,
  .value-proposition,
  .services-preview,
  .process,
  .testimonials,
  .cta-banner {
    padding: 32px 16px;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
    width: 95%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .feature-card,
  .service-card,
  .validity-card,
  .pillar,
  .component,
  .path-card,
  .article-card,
  .contact-card,
  .suggestion,
  .course-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===================================
   ACCESSIBILITY & INTERACTIONS
   =================================== */

*:focus {
  outline: 2px solid #E67E22;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E67E22;
  outline-offset: 2px;
}

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

/* Selection color */
::selection {
  background: #E67E22;
  color: #FFF;
}

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

.section {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    background: #FFF;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}