/* CSS Variables for consistent colors */
:root {
  --primary-blue: #0A1D3A;
  --secondary-blue: #1e40af;
  --orange: #ff6600;
  --light-gray: #6b7280;
  --dark-gray: #374151;
  --white: #ffffff;
  --off-white: #f8fafc;
  --pale-orange: #fff8f0;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* ===== HEADER SECTION ===== */
.header-section {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.header-section .navbar {
  background: var(--white) !important;
  padding: 1.5rem 0;
}

.header-section .navbar-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header-section .logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-section .logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.header-section .brand-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
  line-height: 1;
}

.header-section .navbar-nav {
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.header-section .navbar-nav .nav-link {
  color: var(--dark-gray) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 1.5rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-section .navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

.header-section .btn-orange {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.header-section .btn-orange:hover {
  background-color: #e65c00;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(90deg, var(--white) 0%, var(--pale-orange) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.03) 0%, rgba(255, 102, 0, 0.01) 100%);
  z-index: 0;
}

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

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  font-weight: 400;
}

.hero-section .hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-section .btn-orange {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
}

.hero-section .btn-orange:hover {
  background-color: #e65c00;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
}

.hero-section .btn-outline-blue {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.hero-section .btn-outline-blue:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
}

.hero-section .media-placeholder {
  background: #e5e7eb;
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--light-gray);
  font-weight: 500;
  font-size: 1rem;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logo-img{
  max-width: 100px;
}

/* ===== APPROACH SECTION ===== */
.approach-section {
  background: #f8fafc;
  padding: 80px 0;
}

.approach-section .section-subtitle {
  color: var(--light-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.approach-section .section-title {
  /* font-size: 2.5rem; */
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.approach-section .card {
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.approach-section .card h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.approach-section .card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.approach-section .icon-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.approach-section .icon-blue { 
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border: 2px solid #8b5cf6;
}
.approach-section .icon-pink { 
  background: linear-gradient(135deg, #ec4899, #be185d);
  border: 2px solid #ec4899;
}
.approach-section .icon-purple { 
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border: 2px solid #8b5cf6;
}

/* ===== RESULTS SECTION ===== */
.results-section {
  background: #fcfafa;
  padding: 80px 0;
}

.results-section .section-subtitle {
  color: var(--light-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.results-section .section-title {
  /* font-size: 2.5rem; */
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.results-section .testimonial {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  border-left: 4px solid var(--orange);
  font-style: italic;
}

.results-section .media-placeholder {
  background: #e5e7eb;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  color: var(--light-gray);
  font-weight: 500;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== DIFFERENCE SECTION ===== */
.difference-section {
  background: var(--white);
  padding: 60px 0;
}

.difference-section .section-subtitle {
  color: var(--light-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.difference-section .section-title {
  /* font-size: 2rem; */
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.difference-section .card {
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

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

.difference-section .card h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.difference-section .icon-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 1rem;
}

.difference-section .icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.difference-section .icon-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.difference-section .icon-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.difference-section .icon-violet { background: linear-gradient(135deg, #7c3aed, #6d28d9); }

/* ===== INSIGHTS SECTION ===== */
.insights-section {
  background: var(--off-white);
  padding: 60px 0;
}

.insights-section .section-subtitle {
  color: var(--light-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.insights-section .section-title {
  /* font-size: 2rem; */
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.insights-section .card {
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.insights-section .card h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.insights-section .thumbnail-placeholder {
  width: 100%;
  height: 200px;
  background: #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  font-weight: 500;
}

.insights-section .read-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.insights-section .read-more:hover {
  text-decoration: underline;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--white);
  padding: 60px 0;
}

.faq-section .section-subtitle {
  color: var(--light-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.faq-section .section-title {
  /* font-size: 2rem; */
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.faq-section .faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-section .faq-button {
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  border-radius: 8px;
}

.faq-section .faq-button:hover {
  background: #f9fafb;
}

.faq-section .read-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.faq-section .read-more:hover {
  text-decoration: underline;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: var(--primary-blue);
  color: var(--white);
  padding: 60px 0;
}

.newsletter-section h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.newsletter-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-section .newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
}

.newsletter-section .newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
  background: var(--off-white);
  padding: 60px 0;
}

.leadership-section .section-subtitle {
  color: var(--light-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.leadership-section .section-title {
  /* font-size: 2rem; */
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

.leadership-section .expert-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.leadership-section .expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.leadership-section .expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #e5e7eb;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  font-size: 2rem;
}

.leadership-section .expert-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.leadership-section .expert-title {
  color: var(--dark-gray);
  font-style: italic;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.final-cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.final-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ===== BUTTON STYLES ===== */
.btn-orange {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.btn-orange:hover {
  background-color: #e65c00;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn-outline-blue {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.btn-outline-blue:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  /* Leadership Section Large */
  .leadership-section .expert-card {
    padding: 2.5rem;
  }
  
  .leadership-section .expert-avatar {
    width: 140px;
    height: 140px;
    font-size: 2.5rem;
  }
  
  /* Footer Large */
  .footer-section {
    padding: 4rem 0 1.5rem;
  }
  
  .footer-logo .brand-text {
    font-size: 1.6rem;
  }
  
  .footer-logo .logo-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .media-placeholder {
    height: 350px;
    padding: 3rem 2rem;
  }
  
  .header-section .navbar-nav {
    margin: 0 auto;
  }
  
  .header-section .navbar-nav .nav-link {
    font-size: 0.75rem;
    margin: 0 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .icon-placeholder {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  /* Newsletter form adjustments */
  .newsletter-section .newsletter-form {
    max-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-newsletter .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Header/Navigation */
  .header-section .navbar {
    padding: 1rem 0;
  }
  
  .header-section .navbar-brand {
    margin-right: 0;
  }
  
  .header-section .brand-text {
    font-size: 1.2rem;
  }
  
  .header-section .logo-icon {
    width: 26px;
    height: 26px;
  }
  
  .header-section .navbar-nav {
    margin: 1rem 0 0 0;
    text-align: center;
  }
  
  .header-section .navbar-nav .nav-link {
    font-size: 0.8rem;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .header-section .btn-orange {
    margin: 1rem auto 0;
    width: 100%;
    max-width: 250px;
    display: block;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 40px 0;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-section p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero-section .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-section .btn-orange, 
  .hero-section .btn-outline-blue {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero-section .media-placeholder {
    height: 250px;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .section-subtitle {
    font-size: 0.8rem;
  }
  
  /* Cards */
  .card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Icons */
  .icon-placeholder {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  /* Media Placeholders */
  .media-placeholder {
    height: 250px;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Testimonials */
  .testimonial {
    font-size: 1.1rem;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Newsletter Section */
  .newsletter-section {
    padding: 40px 0;
    text-align: center;
  }
  
  .newsletter-section h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }
  
  .newsletter-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .newsletter-section .newsletter-form {
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
  }
  
  .newsletter-section .newsletter-input {
    width: 100%;
    padding: 12px 16px;
  }
  
  .newsletter-section .btn-orange {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  
  /* Leadership Section */
  .leadership-section {
    padding: 40px 0;
  }
  
  .leadership-section .expert-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .leadership-section .expert-avatar {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .leadership-section .expert-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .leadership-section .expert-title {
    font-size: 0.9rem;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 40px 0;
  }
  
  .faq-section .faq-button {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  /* Final CTA Section */
  .final-cta-section {
    padding: 40px 0;
  }
  
  .final-cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }
  
  .final-cta-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Footer */
  .footer-section {
    padding: 2rem 0 1rem;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo .brand-text {
    font-size: 1.3rem;
  }
  
  .footer-logo .logo-icon {
    width: 28px;
    height: 28px;
  }
  
  .footer-tagline {
    font-size: 0.9rem;
  }
  
  .footer-links {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  
  .footer-nav a {
    font-size: 0.85rem;
  }
  
  .footer-newsletter {
    text-align: center;
  }
  
  .footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .footer-newsletter .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
  }
  
  .footer-newsletter .newsletter-input {
    width: 100%;
    padding: 10px 12px;
  }
  
  .footer-newsletter .btn-orange {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .footer-copyright {
    margin-top: 1.5rem;
  }
  
  .footer-copyright p {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 30px 0;
  }
  
  .hero-section h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .hero-section p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-section .btn-orange, 
  .hero-section .btn-outline-blue {
    max-width: 250px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .hero-section .media-placeholder {
    height: 200px;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.75rem;
  }
  
  /* Cards */
  .card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  /* Icons */
  .icon-placeholder {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  /* Media Placeholders */
  .media-placeholder {
    height: 200px;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Testimonials */
  .testimonial {
    font-size: 1rem;
    padding-left: 0.75rem;
    margin-bottom: 1rem;
  }
  
  /* Newsletter Section */
  .newsletter-section {
    padding: 30px 0;
  }
  
  .newsletter-section h3 {
    font-size: 1.4rem;
  }
  
  .newsletter-section p {
    font-size: 0.9rem;
  }
  
  .newsletter-section .btn-orange {
    max-width: 180px;
    font-size: 0.85rem;
  }
  
  /* Leadership Section */
  .leadership-section {
    padding: 30px 0;
  }
  
  .leadership-section .expert-card {
    padding: 1.25rem;
  }
  
  .leadership-section .expert-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
  }
  
  .leadership-section .expert-name {
    font-size: 1rem;
  }
  
  .leadership-section .expert-title {
    font-size: 0.85rem;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 30px 0;
  }
  
  .faq-section .faq-button {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Final CTA Section */
  .final-cta-section {
    padding: 30px 0;
  }
  
  .final-cta-section h2 {
    font-size: 1.4rem;
  }
  
  .final-cta-section p {
    font-size: 0.9rem;
  }
  
  .final-cta-section .btn-white {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer-section {
    padding: 1.5rem 0 1rem;
  }
  
  .footer-logo .brand-text {
    font-size: 1.2rem;
  }
  
  .footer-logo .logo-icon {
    width: 26px;
    height: 26px;
  }
  
  .footer-tagline {
    font-size: 0.85rem;
  }
  
  .footer-nav a {
    font-size: 0.8rem;
  }
  
  .footer-newsletter h4 {
    font-size: 1rem;
  }
  
  .footer-newsletter .btn-orange {
    max-width: 180px;
    font-size: 0.85rem;
  }
  
  .footer-copyright p {
    font-size: 0.7rem;
  }
  
  /* Thumbnail placeholders */
  .thumbnail-placeholder {
    height: 120px;
  }
  
  /* General button adjustments */
  .btn-orange, .btn-outline-blue, .btn-white {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .hero-section p {
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .card h5 {
    font-size: 0.95rem;
  }
  
  .card p {
    font-size: 0.8rem;
  }
  
  .icon-placeholder {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .media-placeholder {
    height: 180px;
    padding: 1rem;
    font-size: 0.8rem;
  }
  
  .testimonial {
    font-size: 0.95rem;
  }
  
  .newsletter-section h3 {
    font-size: 1.3rem;
  }
  
  .newsletter-section p {
    font-size: 0.85rem;
  }
  
  .leadership-section .expert-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .leadership-section .expert-name {
    font-size: 0.95rem;
  }
  
  .leadership-section .expert-title {
    font-size: 0.8rem;
  }
  
  .final-cta-section h2 {
    font-size: 1.3rem;
  }
  
  .final-cta-section p {
    font-size: 0.85rem;
  }
  
  .footer-logo .brand-text {
    font-size: 1.1rem;
  }
  
  .footer-logo .logo-icon {
    width: 24px;
    height: 24px;
  }
  
  .footer-tagline {
    font-size: 0.8rem;
  }
  
  .footer-nav a {
    font-size: 0.75rem;
  }
  
  .footer-newsletter h4 {
    font-size: 0.95rem;
  }
  
  .footer-newsletter .btn-orange {
    max-width: 160px;
    font-size: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.65rem;
  }
  
  .thumbnail-placeholder {
    height: 100px;
  }
  
  .btn-orange, .btn-outline-blue, .btn-white {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    padding: 20px 0;
  }
  
  .hero-section h1 {
    font-size: 1.6rem;
  }
  
  .hero-section p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .hero-section .media-placeholder {
    height: 150px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .media-placeholder {
    height: 150px;
  }
  
  .leadership-section .expert-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .newsletter-section,
  .leadership-section,
  .faq-section,
  .final-cta-section {
    padding: 20px 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .icon-placeholder {
    border-width: 1px;
  }
  
  .card {
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .card:hover,
  .btn-orange:hover,
  .btn-outline-blue:hover,
  .btn-white:hover {
    transform: none;
  }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
  background: #0A1D3A;
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-logo .brand-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

.footer-tagline {
  color: var(--white);
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  opacity: 0.9;
}

.footer-nav a:hover {
  color: var(--orange);
  opacity: 1;
}

.footer-newsletter h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-newsletter .newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 300px;
}

.footer-newsletter .newsletter-input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  background: var(--white);
}

.footer-newsletter .btn-orange {
  padding: 10px 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.7;
  color: var(--white);
}

.footer-copyright a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-copyright a:hover {
  color: var(--orange);
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 58, 138, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation Improvements */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .navbar-nav {
    padding: 0;
  }
  
  .navbar-nav .nav-item {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0 !important;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: #f8fafc;
  }
  
  .header-section .btn-orange {
    margin: 1rem 1rem 0 1rem;
    width: calc(100% - 2rem);
  }
}

/* Container adjustments for mobile */
@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  
  .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
  .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
  .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
  .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
  .btn-orange, .btn-outline-blue, .btn-white {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .faq-button {
    min-height: 44px;
  }
  
  .newsletter-input {
    min-height: 44px;
  }
  
  .card {
    cursor: pointer;
  }
  
  .card:hover {
    transform: none;
  }
  
  .card:active {
    transform: scale(0.98);
  }
}
