/* ============================================
   SILENT KEEL ACADEMY - MODERN BOLD STYLES
   ============================================ */

/* 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, Arial, sans-serif;
  line-height: 1.6;
  color: #2D2D2D;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD MODERN STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1A4D7C;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #E8503A;
}

strong {
  font-weight: 700;
}

ul {
  list-style: none;
}

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

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

.content-wrapper {
  width: 100%;
}

/* BUTTONS - BOLD GEOMETRIC STYLE */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #E8503A;
  color: #FFFFFF;
  border-color: #E8503A;
  box-shadow: 0 4px 12px rgba(232, 80, 58, 0.3);
}

.btn-primary:hover {
  background-color: #C73D29;
  border-color: #C73D29;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 80, 58, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: transparent;
  color: #1A4D7C;
  border-color: #1A4D7C;
}

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

.btn-link {
  padding: 8px 16px;
  background-color: transparent;
  color: #E8503A;
  border: 2px solid #E8503A;
  font-size: 14px;
}

.btn-link:hover {
  background-color: #E8503A;
  color: #FFFFFF;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 4px solid #E8503A;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1A4D7C;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #E8503A;
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1100;
  background-color: #E8503A;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232, 80, 58, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #C73D29;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #1A4D7C;
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: #E8503A;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #C73D29;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8503A;
  padding-left: 12px;
  border-bottom-color: #E8503A;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A4D7C 0%, #2A6BA0 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background-color: rgba(232, 80, 58, 0.1);
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: #F4F0E8;
  margin-bottom: 32px;
  font-weight: 400;
}

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

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

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

/* TRUST INDICATORS */
.trust-indicators {
  background-color: #F4F0E8;
  padding: 60px 20px;
  margin-bottom: 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.stat-item,
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 200px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 4px solid #E8503A;
  box-shadow: 8px 8px 0 rgba(26, 77, 124, 0.15);
  flex: 1;
  min-width: 220px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #E8503A;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #1A4D7C;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PROBLEM-SOLUTION */
.problem-solution {
  background-color: #FFFFFF;
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 40px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.problem-text {
  font-size: 18px;
  color: #666666;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 4px solid #E8503A;
}

.solution-text {
  font-size: 18px;
  color: #1A4D7C;
  font-weight: 600;
  padding: 24px;
  background-color: #F4F0E8;
  border: 3px solid #1A4D7C;
}

/* SERVICES OVERVIEW */
.services-overview {
  background-color: #F9F9F9;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.service-card,
.card {
  background-color: #FFFFFF;
  border: 4px solid #1A4D7C;
  padding: 32px;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: 8px 8px 0 rgba(232, 80, 58, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 0 rgba(232, 80, 58, 0.3);
}

.service-card h3 {
  color: #1A4D7C;
  margin-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #E8503A;
  margin-top: 16px;
}

/* FEATURES */
.features {
  background-color: #FFFFFF;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  padding: 24px;
  background-color: #F4F0E8;
  border-left: 6px solid #E8503A;
}

.feature-item h3 {
  font-size: 20px;
  color: #1A4D7C;
}

.feature-item p {
  font-size: 15px;
  color: #555555;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #F4F0E8;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid,
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border: 4px solid #1A4D7C;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 6px 6px 0 rgba(232, 80, 58, 0.15);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2D2D2D;
  line-height: 1.7;
  flex-grow: 1;
}

.testimonial-rating {
  color: #E8503A;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #F4F0E8;
}

.testimonial-author strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A4D7C;
}

.testimonial-author span {
  font-size: 14px;
  color: #666666;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #E8503A 0%, #C73D29 100%);
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.cta-content .btn-primary {
  background-color: #FFFFFF;
  color: #E8503A;
  border-color: #FFFFFF;
}

.cta-content .btn-primary:hover {
  background-color: #1A4D7C;
  color: #FFFFFF;
  border-color: #1A4D7C;
}

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

/* ABOUT PAGE SECTIONS */
.story,
.mission-vision,
.methodology,
.achievements {
  padding: 60px 20px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.mission-card {
  background-color: #F4F0E8;
  border: 4px solid #E8503A;
  padding: 32px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  box-shadow: 8px 8px 0 rgba(26, 77, 124, 0.15);
}

.mission-card h3 {
  margin-bottom: 16px;
}

.values-section {
  margin-top: 48px;
}

.values-section h3 {
  text-align: center;
  margin-bottom: 32px;
}

.values-list {
  max-width: 600px;
  margin: 0 auto;
}

.values-list li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 16px;
  background-color: #F4F0E8;
  border-left: 6px solid #E8503A;
  font-size: 18px;
  font-weight: 600;
  color: #1A4D7C;
  position: relative;
}

.values-list li::before {
  content: '▸';
  position: absolute;
  left: 20px;
  color: #E8503A;
  font-size: 20px;
}

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

.pillar-card {
  background-color: #FFFFFF;
  border: 3px solid #1A4D7C;
  padding: 24px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: center;
}

.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* COURSES PAGE */
.course-card {
  background-color: #FFFFFF;
  border: 4px solid #1A4D7C;
  padding: 32px;
  margin-bottom: 32px;
  position: relative;
  box-shadow: 8px 8px 0 rgba(232, 80, 58, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-badge {
  display: inline-block;
  background-color: #E8503A;
  color: #FFFFFF;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
}

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

.course-meta span {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
}

.course-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #E8503A;
  margin: 16px 0;
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.what-you-get {
  background-color: #F4F0E8;
  padding: 60px 20px;
}

.inclusion-list {
  max-width: 700px;
  margin: 32px auto 0;
}

.inclusion-list li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background-color: #FFFFFF;
  border-left: 6px solid #1A4D7C;
  font-size: 16px;
  position: relative;
}

.inclusion-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #E8503A;
  font-weight: 800;
  font-size: 20px;
}

/* PROGRAMS PAGE */
.packages-grid,
.corporate-grid,
.certification-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.package-card,
.corporate-card,
.certification-card {
  background-color: #FFFFFF;
  border: 4px solid #1A4D7C;
  padding: 32px;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: 8px 8px 0 rgba(232, 80, 58, 0.2);
}

.savings-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: #E8503A;
  color: #FFFFFF;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(232, 80, 58, 0.3);
}

.package-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #E8503A;
  text-align: center;
  margin: 16px 0;
}

.package-includes {
  flex-grow: 1;
}

.package-includes li,
.corporate-card ul li,
.certification-card p {
  padding: 12px 12px 12px 32px;
  margin-bottom: 8px;
  background-color: #F4F0E8;
  font-size: 15px;
  position: relative;
}

.package-includes li::before,
.corporate-card ul li::before {
  content: '▸';
  position: absolute;
  left: 12px;
  color: #E8503A;
  font-weight: 800;
}

/* SUCCESS STORIES PAGE */
.metrics-showcase {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background-color: #F4F0E8;
  border: 4px solid #E8503A;
  flex: 1;
  min-width: 220px;
  box-shadow: 8px 8px 0 rgba(26, 77, 124, 0.15);
}

.metric-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #E8503A;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  font-weight: 600;
  color: #1A4D7C;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.student-achievements {
  background-color: #F4F0E8;
  padding: 60px 20px;
}

.achievements-list {
  max-width: 800px;
  margin: 32px auto 0;
}

.achievements-list li {
  padding: 20px 20px 20px 60px;
  margin-bottom: 16px;
  background-color: #FFFFFF;
  border-left: 6px solid #E8503A;
  font-size: 18px;
  font-weight: 600;
  color: #1A4D7C;
  position: relative;
}

.achievements-list li::before {
  content: '★';
  position: absolute;
  left: 24px;
  color: #E8503A;
  font-size: 24px;
}

/* RESOURCES PAGE */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  background-color: #F4F0E8;
  border: 4px solid #1A4D7C;
  padding: 32px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 6px 6px 0 rgba(232, 80, 58, 0.2);
}

.resource-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #E8503A;
  margin: 8px 0 16px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.resource-card {
  background-color: #FFFFFF;
  border: 4px solid #1A4D7C;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 8px 8px 0 rgba(232, 80, 58, 0.2);
}

.resource-type {
  display: inline-block;
  background-color: #E8503A;
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
}

.downloads-list {
  max-width: 800px;
  margin: 32px auto 0;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-bottom: 16px;
  background-color: #FFFFFF;
  border: 3px solid #1A4D7C;
  gap: 16px;
}

.download-item h3 {
  font-size: 18px;
  margin: 0;
}

.newsletter-signup {
  background-color: #1A4D7C;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-signup h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter-signup p {
  color: #F4F0E8;
  font-size: 18px;
  margin-bottom: 32px;
}

.benefits-list {
  max-width: 600px;
  margin: 24px auto 32px;
  text-align: left;
}

.benefits-list li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  color: #FFFFFF;
  font-size: 16px;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #E8503A;
  font-weight: 800;
  font-size: 20px;
}

/* CONTACT PAGE */
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.option-card {
  background-color: #F4F0E8;
  border: 4px solid #E8503A;
  padding: 24px;
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  text-align: center;
}

.option-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  background-color: #FFFFFF;
  border: 4px solid #1A4D7C;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  box-shadow: 8px 8px 0 rgba(232, 80, 58, 0.2);
}

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

.contact-card a {
  color: #E8503A;
  font-weight: 600;
}

.response-time {
  background-color: #F4F0E8;
  padding: 60px 20px;
  text-align: center;
}

.response-time p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1A4D7C 0%, #2A6BA0 100%);
  padding: 80px 20px;
  text-align: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  background-color: #E8503A;
  color: #FFFFFF;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: #FFFFFF;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.step-card {
  background-color: #FFFFFF;
  border: 4px solid #1A4D7C;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(232, 80, 58, 0.2);
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #E8503A;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.timeframe {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background-color: #F4F0E8;
  color: #1A4D7C;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion-card {
  background-color: #FFFFFF;
  border: 4px solid #E8503A;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.email-confirmation {
  background-color: #F4F0E8;
  padding: 60px 20px;
  text-align: center;
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 32px auto 0;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  margin-bottom: 16px;
  line-height: 1.8;
}

.last-updated,
.subtitle {
  color: #666666;
  font-size: 14px;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  background-color: #1A4D7C;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-top: 6px solid #E8503A;
}

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

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

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

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  color: #F4F0E8;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-section a:hover {
  color: #E8503A;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 2px solid rgba(244, 240, 232, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.legal-links a {
  color: #F4F0E8;
  font-size: 13px;
}

.copyright {
  color: #F4F0E8;
  font-size: 13px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A4D7C;
  border-top: 4px solid #E8503A;
  padding: 24px;
  z-index: 950;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  color: #FFFFFF;
  margin: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #E8503A;
  color: #FFFFFF;
  border-color: #E8503A;
}

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

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-reject:hover {
  background-color: #FFFFFF;
  color: #1A4D7C;
}

.cookie-settings {
  background-color: transparent;
  color: #F4F0E8;
  border: none;
  text-decoration: underline;
  padding: 12px;
}

.cookie-settings:hover {
  color: #E8503A;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border: 4px solid #1A4D7C;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #E8503A;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #C73D29;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #F4F0E8;
  border-left: 4px solid #E8503A;
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCCCCC;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: #E8503A;
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

input:disabled + .toggle-slider {
  background-color: #1A4D7C;
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  /* Grid adjustments */
  .stats-grid,
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .mission-grid,
  .pillars-grid,
  .packages-grid,
  .corporate-grid,
  .categories-grid,
  .resources-grid,
  .options-grid,
  .contact-details,
  .steps-grid,
  .suggestions-grid,
  .metrics-grid {
    flex-direction: column;
    gap: 24px;
  }

  .stat-item,
  .service-card,
  .feature-item,
  .testimonial-card,
  .mission-card,
  .pillar-card,
  .package-card,
  .corporate-card,
  .category-card,
  .resource-card,
  .option-card,
  .contact-card,
  .step-card,
  .suggestion-card,
  .metric-card,
  .stat-card,
  .course-card,
  .certification-card {
    max-width: 100%;
  }

  /* Button adjustments */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* CTA buttons mobile */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 40px 16px;
  }

  .stat-number,
  .metric-number {
    font-size: 36px;
  }

  .price,
  .course-price {
    font-size: 24px;
  }

  .package-price {
    font-size: 28px;
  }
}

/* TABLET AND UP */
@media (min-width: 769px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* DESKTOP ENHANCEMENTS */
@media (min-width: 1024px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 64px;
  }

  section {
    padding: 80px 20px;
  }
}

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

  body {
    color: #000000;
  }

  a {
    text-decoration: underline;
  }
}