/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Navigation */
.navigation {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1e3a8a;
  margin: 3px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2563eb;
}

.nav-cta {
  background-color: #f59e0b;
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: #d97706;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  background-color: #f59e0b;
  color: white;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Intro Section */
.intro-section {
  padding: 80px 0;
  background-color: white;
}

.intro-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.intro-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.intro-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.intro-card p {
  color: #666;
  line-height: 1.7;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: #f9fafb;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.benefits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.benefits-column h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #1e3a8a;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #666;
  line-height: 1.7;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Results Section */
.results {
  padding: 80px 0;
  background-color: white;
}

.results h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.metrics-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.metric-item {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
}

.metric-item h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.metric-item p {
  color: #666;
  line-height: 1.7;
}

.results-image {
  margin-top: 40px;
}

.results-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Industries Section */
.industries {
  padding: 80px 0;
  background-color: white;
}

.industries h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.industry-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.industry-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.industry-card p {
  color: #666;
  line-height: 1.7;
}

/* Contact Form Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.95;
}

.strategy-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.submit-button {
  width: 100%;
  background-color: #f59e0b;
  color: white;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Contact Page Specific Styles */
.contact-page {
  padding: 80px 0;
  background-color: #f9fafb;
}

.contact-page-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.form-intro {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-form-wrapper .contact-form {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-box,
.contact-cta-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-box h3,
.contact-cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #1e3a8a;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #1e3a8a;
}

.info-item p {
  color: #666;
  line-height: 1.6;
}

.info-item a {
  color: #2563eb;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

.map-button {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.map-button:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

.phone-cta {
  display: inline-block;
  background-color: #f59e0b;
  color: white;
  padding: 14px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.phone-cta:hover {
  background-color: #d97706;
  transform: translateY(-2px);
}

.contact-cta-box p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Corporate Sections */
.corporate-intro {
  padding: 80px 0;
  background-color: white;
}

.corporate-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.corporate-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.corporate-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.lead-text {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.corporate-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.corp-stat {
  text-align: center;
}

.corp-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 10px;
}

.corp-stat p {
  color: #666;
  font-size: 0.95rem;
}

/* Team Development */
.team-development {
  padding: 80px 0;
  background-color: #f9fafb;
}

.team-development h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.team-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.card-list {
  list-style: none;
  margin-top: 15px;
}

.card-list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  color: #666;
  line-height: 1.6;
}

.card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* Culture Section */
.culture-section {
  padding: 80px 0;
  background-color: white;
}

.culture-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.culture-content h3 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #1e3a8a;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.approach-item {
  display: flex;
  gap: 20px;
  background: #f9fafb;
  padding: 25px;
  border-radius: 12px;
}

.approach-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.approach-item h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #1e3a8a;
}

.approach-item p {
  color: #666;
  line-height: 1.7;
}

/* Use Cases */
.use-cases {
  padding: 80px 0;
  background-color: #f9fafb;
}

.use-cases h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.case-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.case-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.case-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.case-card p {
  color: #666;
  line-height: 1.7;
}

/* Corporate Benefits */
.corporate-benefits {
  padding: 80px 0;
  background-color: white;
}

.corporate-benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.impact-item {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-top: 4px solid #2563eb;
}

.impact-item h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.impact-item p {
  color: #666;
  line-height: 1.7;
}

/* Methodology Sections */
.methodology-intro {
  padding: 80px 0;
  background-color: white;
}

.methodology-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.method-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.method-principles {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.principle-item {
  background: #f9fafb;
  padding: 25px;
  border-radius: 12px;
}

.principle-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.principle-item p {
  color: #666;
  line-height: 1.7;
}

.method-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Process Steps */
.process-steps {
  padding: 80px 0;
  background-color: #f9fafb;
}

.process-steps h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #1e3a8a;
}

.steps-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 70px;
  width: 3px;
  height: calc(100% + 20px);
  background: linear-gradient(180deg, #2563eb, #e5e7eb);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.step-content p {
  color: #666;
  line-height: 1.7;
}

/* Objectives Section */
.objectives-section {
  padding: 80px 0;
  background-color: white;
}

.objectives-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.objective-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.objective-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.objective-card p {
  color: #666;
  line-height: 1.7;
}

/* Assessment Section */
.assessment-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.assessment-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.assessment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.assessment-description h3,
.assessment-benefits h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.assessment-description p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.assessment-list {
  list-style: none;
}

.assessment-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #666;
  line-height: 1.7;
}

.assessment-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-point {
  display: flex;
  gap: 15px;
  align-items: start;
}

.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.benefit-point p {
  color: #666;
  line-height: 1.7;
}

/* Pillars Section */
.pillars-section {
  padding: 80px 0;
  background-color: white;
}

.pillars-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.pillar-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.pillar-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 4rem;
  font-weight: 800;
  color: #e5e7eb;
  line-height: 1;
}

.pillar-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1e3a8a;
  position: relative;
  z-index: 1;
}

.pillar-card p {
  color: #666;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button-large {
  display: inline-block;
  background-color: #f59e0b;
  color: white;
  padding: 18px 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.cta-button-large:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Program Detail Section */
.program-detail {
  padding: 80px 0;
  background-color: white;
}

.program-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.program-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.highlight-box {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid #2563eb;
}

.highlight-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.highlight-box p {
  color: #666;
  line-height: 1.6;
}

/* Target Audience Section */
.target-audience {
  padding: 80px 0;
  background-color: #f9fafb;
}

.target-audience h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.audience-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.audience-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 15px;
  line-height: 1;
}

.audience-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.audience-card p {
  color: #666;
  line-height: 1.7;
}

/* Skills Section */
.skills-section {
  padding: 80px 0;
  background-color: white;
}

.skills-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.skills-content h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1e3a8a;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.skill-item {
  display: flex;
  gap: 20px;
  background: #f9fafb;
  padding: 25px;
  border-radius: 12px;
}

.skill-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.skill-details h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #1e3a8a;
}

.skill-details p {
  color: #666;
  line-height: 1.7;
}

.skills-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

/* Format Section */
.format-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.format-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.format-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
}

.format-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.format-card.featured {
  border: 3px solid #2563eb;
  transform: scale(1.05);
}

.format-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.format-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.format-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.format-features {
  list-style: none;
  margin-top: 20px;
}

.format-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #666;
  border-bottom: 1px solid #e5e7eb;
}

.format-features li:last-child {
  border-bottom: none;
}

.format-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Measurable Benefits Section */
.measurable-benefits {
  padding: 80px 0;
  background-color: white;
}

.measurable-benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.benefit-stat {
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid #2563eb;
}

.benefit-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 15px;
  line-height: 1;
}

.benefit-stat p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-section a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #334155;
  color: #cbd5e1;
}

/* Cookie Notification */
.cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e293b;
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.cookie-notification.show {
  display: block;
}

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

.cookie-content p {
  flex: 1;
  margin: 0;
  line-height: 1.6;
}

.cookie-accept {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

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

/* Modal */
.modal-overlay {
  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: 2000;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: white;
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 25px;
}

.modal h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.modal p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.modal-close {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-close:hover {
  background-color: #1e40af;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-container,
  .program-container,
  .location-container,
  .corporate-container,
  .methodology-container,
  .skills-container {
    /* Added skills-container */
    grid-template-columns: 1fr;
  }

  .benefits-split,
  .metrics-container,
  .assessment-content,
  .corporate-stats {
    grid-template-columns: 1fr;
  }

  .contact-page-container {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .skills-image {
    /* Added to ensure image position is not sticky on smaller screens */
    position: static;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-intro,
  .lead-text {
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem !important;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strategy-form,
  .modal {
    padding: 25px;
  }
}
