/* style.css - Updated: 2024-01-23 - Force Server Override */

/* Global box-sizing and overflow prevention */
* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333333;
  width: 100%;
  overflow-x: hidden;
}

header {
  background: linear-gradient(135deg, #123458 0%, #1e4a6b 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF0000;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.hero-badge a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero-badge a:hover {
  text-decoration: underline;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

nav {
  background-color: #123458;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: relative;
  flex-wrap: wrap;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: none;
  position: absolute;
  top: 60px;
  right: 30px;
  background-color: #123458;
  flex-direction: column;
  padding: 15px;
  border-radius: 8px;
  z-index: 1;
}

/* ====== CLEAN NAVIGATION SYSTEM ====== */
/* Remove all old navigation styles to prevent conflicts */
.landing-nav {
  display: none !important;
}

/* Base navigation styles - hidden by default */
.mobile-nav,
.desktop-nav {
  display: none;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #D4C9BE;
}

.language-switcher {
  display: flex;
  gap: 10px;
  font-size: 1.3rem;
  cursor: pointer;
}

.language-switcher span:hover {
  opacity: 0.7;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: 0.4s;
}

section {
  margin: 40px auto;
  padding: 0 20px;
}

/* Remove margin from hero section to fix nav spacing */
.landing-hero {
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  color: #123458;
}

ul {
  padding-left: 20px;
}

.testimonial {
  background-color: #f4f4f4;
  padding: 20px;
  margin: 20px auto;
  width: 90vw;
  max-width: 600px;
  box-sizing: border-box;
  border-left: 5px solid #123458;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.cta {
  background-color: #f4f4f4;
  padding: 20px;
  margin: 20px auto;
  width: calc(100% - 40px);
  box-sizing: border-box;
}

.cta {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
}

.contact {
  background-color: #f4f4f4;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  gap: 12px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-inner h2,
.contact-inner a {
  text-align: center;
}

footer {
  /* background-color: #333; */
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #777777;
  margin-top: 0;
}

a {
  color: #123458;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.calendly-cta {
  background-color: #123458;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.calendly-cta:hover {
  background-color: #0e2c48;
}

.about-image {
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  float: right;
  margin-left: 24px;
  margin-bottom: 16px;
}

/* ========== Mobile-first Styles (max-width: 767px) ========== */
@media (max-width: 767px) {
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .about-image {
    float: none;
    display: block;
    margin: 0 auto 24px auto;
  }

  .contact {
    width: 100%;
    overflow-x: hidden;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .calendly-cta {
    display: block;
    margin: 0 auto;
  }

  footer {
    background-color: #ffffff !important;
  }
}

/* ========== Styles for Tablet (768px to 899px) ========== */
@media (min-width: 768px) and (max-width: 899px) {
  /* Estilos específicos para essa faixa de largura de tela serão inseridos aqui */
  .testimonial {
    width: 90vw;
    max-width: 90vw;
    margin: 20px auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #f4f4f4;
    border-left: 5px solid #123458;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .testimonial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    padding: 0;
  }

  .contact {
    width: 100%;
    overflow-x: hidden;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .calendly-cta {
    display: block;
    margin: 0 auto;
  }

  footer {
    background-color: #ffffff !important;
  }
}

/* ========== Styles for Desktop (min-width: 868px) ========== */
@media (min-width: 868px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
  }

  .hamburger {
    display: none;
  }

  .testimonial,
  .cta {
    width: 100%;
    padding: 20px;
  }
}

/* ========================================== */
/* === Breakpoint: Large Desktop (>= 900px) === */
/* ========================================== */
@media (min-width: 900px) {
  body {
    background-color: #f0f0f0;
  }

  main.card-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .card {
    background-color: #ffffff;
    width: 85vw;
    max-width: 85vw;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  section {
    padding: 40px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    max-width: 100%;
  }

  .section-text-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
  }

  .testimonial,
  .cta {
    width: 100%;
    margin: 0;
    padding: 40px;
  }

  .card .contact {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .card .contact-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
  }

  footer {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .card footer {
    width: 100%;
    background-color: #ffffff !important;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #777777;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
  }

  .card .testimonial {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: none;
    padding: 20px;
    box-sizing: border-box;
  }

  .testimonial:last-child {
    margin-bottom: 0;
  }

  .card header,
  .card nav {
    width: 100%;
    box-sizing: border-box;
  }
}
  .nav-links a {
    margin-left: 16px;
    margin-right: 16px;
  }

/* ========== Styles for Desktop Medium (900px to 1199px) ========== */
@media (min-width: 900px) and (max-width: 1199px) {
  .testimonial {
    width: 90vw;
    max-width: 90vw;
    margin: 20px auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-left: 5px solid #123458;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .testimonial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    padding: 0;
  }

  .contact {
    width: 100%;
    overflow-x: hidden;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .card .contact {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .card .contact-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .calendly-cta {
    display: block;
    margin: 0 auto;
  }

  footer {
    background-color: #ffffff !important;
  }
}

/* ====== Extra Large Screens (min-width: 1200px) ====== */
@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }

  header h1 {
    font-size: 3rem;
  }

  header p,
  section p,
  li,
  .cta p {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    max-width: 85vw;
  }

  .section-text-block {
    max-width: 80vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
  }

  .section-text-block .text-block {
    flex: 1;
    text-align: left;
  }

  .cta-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: start;
    max-width: 80vw;
    margin: 40px auto;
  }

  .cta-wrapper .cta {
    width: 100%;
    box-sizing: border-box;
  }

  .cta-why-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: start;
    max-width: 80vw;
    margin: 40px auto;
    box-sizing: border-box;
  }

  .cta-why-wrapper .cta,
  .cta-why-wrapper .why-work {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
  }

  .testimonial-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 85vw;
    max-width: 85vw;
    margin: 0 auto;
    box-sizing: border-box;
    margin-left: 0;
  }

  .testimonial.top {
    width: calc(45% - 20px);
    box-sizing: border-box;
  }

  .testimonial.bottom {
    width: 90%;
    margin: 0 auto;
  }

  .testimonial-row-top {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin: 0 auto 20px auto;
  }

  .testimonial-row-top .testimonial {
    width: calc(45% - 20px);
  }

  .testimonial-row-bottom {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
  }

  .testimonial-row-bottom .testimonial {
    width: 90%;
  }

  .card .contact {
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px;
    margin: 0 auto;
  }

  .card .contact-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* ====== Credibility Section ====== */
.credibility-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 40px 0;
}

.credibility-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.credibility-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.credibility-item:hover {
  transform: translateY(-5px);
}

.credibility-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.credibility-item h3 {
  color: #123458;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

/* ====== CTA Section ====== */
.cta-section {
  background: linear-gradient(135deg, #123458 0%, #1e4a6b 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin: 40px 0;
}

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

.cta-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.calendly-cta.primary {
  background: #FF0000;
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendly-cta.primary:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 13px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: white;
  color: #123458;
  text-decoration: none;
}

/* ====== Contact Text Block ====== */
.contact-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

/* ====== Social Links ====== */
.social-links {
  margin-top: 30px;
  width: 100%;
}

.social-links h3 {
  color: #123458;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 2rem;
  color: #123458;
  background: transparent;
  border: none;
}

.social-icon:hover {
  color: #FF0000;
  transform: translateY(-3px) scale(1.1);
  text-decoration: none;
}

/* ====== Contact Section ====== */
.contact-section {
  padding: 80px 20px;
  background: white;
  border-radius: 0;
  margin-bottom: 0;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  color: #123458;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 50px;
  line-height: 1.6;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #f8f9fa;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #f8f9fa;
}

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

.contact-card h3 {
  color: #123458;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-card p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-btn.primary {
  background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.contact-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
  color: white;
  text-decoration: none;
}

.contact-btn.secondary {
  background: transparent;
  color: #123458;
  border: 2px solid #123458;
}

.contact-btn.secondary:hover {
  background: #123458;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.social-section {
  background: #f8f9fa;
  padding: 50px 20px;
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.social-section h3 {
  color: #123458;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.social-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 2.2rem;
  color: #123458;
  background: transparent;
  border: none;
  border-radius: 50%;
}

.social-icon:hover {
  color: #FF0000;
  transform: translateY(-5px) scale(1.1);
  text-decoration: none;
  background: rgba(255, 0, 0, 0.1);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }
  
  .contact-container h2 {
    font-size: 2rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .contact-card h3 {
    font-size: 1.3rem;
  }
  
  .social-section {
    padding: 40px 15px;
  }
  
  .social-icons {
    gap: 20px;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-container h2 {
    font-size: 1.8rem;
  }
  
  .contact-card {
    padding: 25px 15px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .contact-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .social-section {
    padding: 30px 10px;
  }
}

/* ====== ABOUT PAGE HEADER ====== */
.about-header {
  background: linear-gradient(135deg, #123458 0%, #1e4a6b 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.about-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

/* ====== CONTACT PAGE STYLES ====== */
.contact-header {
  background: linear-gradient(135deg, #123458 0%, #1e4a6b 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.profile-section {
  max-width: 400px;
  margin: 0 auto;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.profile-section h1 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.profile-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.contact-links {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #333;
}

.contact-link.primary {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  color: white;
  border-color: #ff6b35;
}

.contact-link.primary:hover {
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.link-icon {
  font-size: 2rem;
  width: 50px;
  text-align: center;
}

.link-content h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  color: inherit;
}

.link-content p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.quick-info {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.quick-info h2 {
  color: #123458;
  font-size: 2rem;
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-icon {
  font-size: 2.5rem;
  width: 60px;
  text-align: center;
}

.info-content h4 {
  color: #123458;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.info-content p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.testimonial-section h2 {
  color: #123458;
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonial-quote {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 12px;
  border-left: 5px solid #ff6b35;
}

.testimonial-quote p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-quote cite {
  color: #666;
  font-weight: 600;
}

/* ====== ABOUT PAGE STYLES ====== */
.about-hero {
  background: #f8f9fa;
  padding: 60px 20px;
  margin: 0;
}

.about-hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-hero-text {
  flex: 1;
}

.about-hero-text h2 {
  color: #123458;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-intro {
  font-size: 1.2rem;
  font-weight: 600;
  color: #123458;
  margin-bottom: 20px;
}

.about-hero-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.about-hero-image {
  flex: 0 0 200px;
  text-align: center;
}


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

.result-item:hover {
  transform: translateY(-5px);
}

.result-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #123458;
  margin-bottom: 10px;
}

.result-label {
  color: #666;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-image {
  width: 200px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .link-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-link {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .link-icon {
    font-size: 2.5rem;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon {
    font-size: 3rem;
  }
  
  .about-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .about-hero-image {
    flex: none;
  }
  
  .about-image {
    width: 180px;
    float: none;
    display: block;
    margin: 0 auto;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .result-number {
    font-size: 2rem;
  }
}

/* Landing Page Styles */
.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 15px 15px 0 0;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.landing-nav .language-switcher {
  display: flex;
  gap: 15px;
}

.landing-nav .language-switcher span {
  color: #123458;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 5px;
}

.landing-nav .language-switcher span:hover {
  background: #f8f9fa;
  transform: scale(1.1);
}

.landing-nav .nav-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-nav .nav-links {
  display: flex;
  gap: 30px;
}

.landing-nav .nav-links a {
  color: #123458;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 5px;
}

.landing-nav .nav-links a:hover {
  background: #f8f9fa;
  color: #FF0000;
}

.landing-nav .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.landing-nav .hamburger div {
  width: 25px;
  height: 3px;
  background: #123458;
  transition: all 0.3s ease;
}

.language-selector {
  text-align: right;
  padding: 20px 20px 0 0;
  margin-bottom: 20px;
}

.lang-link {
  color: #123458;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.lang-link:hover {
  background: #f8f9fa;
  color: #FF0000;
}

.lang-link.active {
  background: #123458;
  color: white;
}

.lang-separator {
  margin: 0 10px;
  color: #666;
}

/* Landing Hero Section */
.landing-hero {
  background: linear-gradient(135deg, #123458 0%, #1e4a6b 100%);
  color: white;
  padding: 60px 20px;
  border-radius: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: #FFD700;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-cta {
  text-align: left;
}

.cta-note {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-badge {
  position: absolute;
  bottom: -10px;
  right: 20px;
  background: #FF0000;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.image-badge i {
  margin-right: 8px;
}

/* Problem Section */
.problem-section {
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 0;
  margin-bottom: 0;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #123458;
  margin-bottom: 50px;
  font-weight: 700;
}

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

.problem-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-5px);
}

.problem-icon {
  width: 80px;
  height: 80px;
  background: #FFE5E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #FF0000;
  font-size: 2rem;
}

.problem-item h3 {
  color: #123458;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

/* Solution Section */
.solution-section {
  padding: 60px 20px;
  background: white;
  margin-bottom: 0;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.solution-text h3 {
  font-size: 2rem;
  color: #123458;
  margin-bottom: 20px;
}

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

.solution-list {
  list-style: none;
  padding: 0;
}

.solution-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333;
}

.solution-list i {
  color: #28a745;
  margin-right: 15px;
  font-size: 1.2rem;
}

.solution-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Results Section */
.results-section {
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 0;
  margin: 0;
}

/* Ensure no gap between Results and CTA sections */
.results-section + .cta-section {
  margin-top: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.result-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid #f8f9fa;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #f8f9fa;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.result-card p {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.result-card strong {
  color: #123458;
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .result-card {
    min-height: 180px;
    padding: 25px;
  }
  
  .result-card p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .results-grid {
    padding: 0 5px;
  }
  
  .result-card {
    padding: 20px;
    min-height: 160px;
  }
  
  .result-card p {
    font-size: 0.95rem;
  }
  
  .result-card strong {
    font-size: 0.9rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #123458 0%, #1e4a6b 100%);
  color: white;
  border-radius: 0;
  text-align: center;
  margin: 0;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-button.large {
  padding: 20px 40px;
  font-size: 1.2rem;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  opacity: 0.9;
  color: white;
}

.cta-guarantee i {
  color: #28a745;
}

/* CTA Button Secondary - Same style as primary */
.cta-button.secondary {
  background: #FF0000;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.cta-button.secondary:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.cta-button.secondary i {
  color: white;
  font-size: 1.1rem;
}

.cta-button.secondary:hover i {
  color: white;
}

/* Contact Section for Landing Page */
.contact {
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 0;
  margin-bottom: 0;
}

.contact-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.contact-text-block h2 {
  color: #123458;
  margin-bottom: 20px;
}

.contact-text-block p {
  color: #666;
  margin-bottom: 20px;
}

.contact-text-block a {
  color: #123458;
  text-decoration: none;
  font-weight: 500;
}

.contact-text-block a:hover {
  color: #FF0000;
}

/* Footer for Landing Page */
.footer {
  background: #ffffff !important;
  padding: 20px;
  text-align: center;
  border-radius: 0 0 15px 15px;
  margin-top: 0;
  box-shadow: none;
}

.footer p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 0;
  margin-bottom: 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #f8f9fa;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.faq-item:hover {
  border-color: #FF0000;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: #FF0000;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px 15px 0 0;
}

.faq-question h3 {
  color: #123458;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  background: #FF0000;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle:hover {
  background: #cc0000;
  transform: scale(1.1);
}

.faq-toggle i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  padding: 25px;
  font-size: 1rem;
}

/* Target Audience Section */
.audience-section {
  padding: 60px 20px;
  background: white;
  border-radius: 0;
  margin-bottom: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.audience-card.positive {
  border-top: 4px solid #28a745;
}

.audience-card.negative {
  border-top: 4px solid #dc3545;
}

.audience-card h3 {
  color: #123458;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-card li {
  padding: 8px 0;
  color: #666;
  line-height: 1.5;
  font-size: 1rem;
}

/* Pricing Information Styles */
.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #FF0000;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #123458;
}

.price-desc {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.investment-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #123458;
}

/* Contact Methods Styles */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #123458;
}

.method-icon {
  font-size: 2rem;
  color: #123458;
  min-width: 60px;
  text-align: center;
}

.method-info h4 {
  margin: 0 0 5px 0;
  color: #123458;
  font-size: 1.2rem;
}

.method-info p {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 0.9rem;
}

.method-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.method-btn.primary {
  background: #FF0000;
  color: white;
}

.method-btn.primary:hover {
  background: #e60000;
  transform: translateY(-2px);
}

.method-btn.secondary {
  background: #123458;
  color: white;
}

.method-btn.secondary:hover {
  background: #0f2a47;
  transform: translateY(-2px);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #123458;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.social-link:hover {
  background: #0f2a47;
  transform: translateY(-2px);
}

/* ====== MOBILE NAVIGATION STYLES ====== */
/* Independent classes to protect layout */

/* Mobile Navigation Container */
.mobile-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  border-radius: 15px 15px 0 0;
  position: relative;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

/* Language Switcher - Left Side */
.mobile-nav .language-switcher {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mobile-nav .language-switcher span {
  color: #123458;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 5px;
}

.mobile-nav .language-switcher span:hover {
  background: #f8f9fa;
  transform: scale(1.1);
}

/* Hamburger Menu - Right Side */
.mobile-nav .hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 5px;
}

.mobile-nav .hamburger div {
  width: 25px;
  height: 3px;
  background: #123458;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Navigation Links - Hidden by default */
.mobile-nav .nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.mobile-nav .nav-links.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-nav .nav-links a {
  color: #123458;
  text-decoration: none;
  font-weight: 500;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav .nav-links a:hover {
  background: #f8f9fa;
  color: #FF0000;
}

.mobile-nav .nav-links a:last-child {
  border-bottom: none;
}

/* Ensure mobile nav container allows overflow */
.mobile-nav {
  overflow: visible;
}

/* Debug styles to make menu more visible */
.mobile-nav .nav-links.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.3s ease;
}

/* Make sure links are clickable and visible */
.mobile-nav .nav-links a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ====== DESKTOP NAVIGATION STYLES ====== */
/* Keep existing desktop styles */
.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 15px 15px 0 0;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.desktop-nav .language-switcher {
  display: flex;
  gap: 15px;
}

.desktop-nav .language-switcher span {
  color: #123458;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 5px;
}

.desktop-nav .language-switcher span:hover {
  background: #f8f9fa;
  transform: scale(1.1);
}

.desktop-nav .nav-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav .nav-links {
  display: flex;
  gap: 30px;
}

.desktop-nav .nav-links a {
  color: #123458;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 5px;
}

.desktop-nav .nav-links a:hover {
  background: #f8f9fa;
  color: #FF0000;
}

.desktop-nav .hamburger {
  display: none;
}

/* ====== RESPONSIVE NAVIGATION SYSTEM ====== */
/* Mobile Navigation - Show on mobile only */
@media (max-width: 768px) {
  .mobile-nav {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 15px 15px 0 0;
    position: relative;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  
  .desktop-nav {
    display: none !important;
  }
  
  /* Mobile nav dropdown */
  .mobile-nav .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    width: 100%;
  }
  
  .mobile-nav .nav-links.active {
    display: flex;
  }
  
  .mobile-nav .nav-links a {
    color: #123458;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
  }
  
  .mobile-nav .nav-links a:hover {
    background: #f8f9fa;
    color: #FF0000;
  }
  
  .mobile-nav .nav-links a:last-child {
    border-bottom: none;
  }
}

/* Desktop Navigation - Show on desktop only */
@media (min-width: 769px) {
  .desktop-nav {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px 15px 0 0;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-nav {
    display: none !important;
  }
}
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .solution-content {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button.large {
    width: 100%;
    max-width: 300px;
  }
  
  .carousel-container {
    width: 95%;
  }
  
  .carousel-wrapper {
    height: 350px;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-container {
    padding: 0 10px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
    padding-right: 15px;
  }
  
  .faq-toggle {
    width: 35px;
    height: 35px;
  }
  
  .faq-answer p {
    padding: 20px;
  }
}