
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {

    --bg-main: #FFFFFF;         
    --bg-surface: #F8F9FA;      
    --border-color: #E5E7EB;    
    --text-main: #111827;       
    --text-muted: #4B5563;      
    --text-light: #6B7280;      
    --google-blue: #1A73E8;    
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius: 20px;             
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  }
  
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--bg-main);
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 3rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem; 
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.3px;
  }

  .nav-logo img {
    height: 32px; 
    width: auto;  
    object-fit: contain;
  }

  .nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.15s ease;
  }

  .nav-links a:hover { 
    color: var(--text-main);
  }

  .nav-cta {
    background: var(--text-main); 
    color: var(--bg-main) !important; 
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s;
  }
   
  .nav-cta:hover { 
    background: #0f0f0f !important;
    color: var(--bg-main) !important; 
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  }
  
  /* ── SUBMENU DROPDOWN STYLES ── */
.nav-links li.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  min-width: 260px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
}

.submenu li {
  width: 100%;
}

.submenu li a {
  display: block;
  padding: 7px 14px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu li a:hover {
  background: #F1F5F9;
  color: #1A73E8;
}

/* Hover-e submenu show korbe */
.nav-links li.has-submenu:hover .submenu {
  display: block;
}

/* ── MOBILE NAV & SUBMENU FIX ── */
@media (max-width: 768px) {
  /* Mobile Menu Container Alignment */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center; 
    text-align: center;  
    width: 100%;
    background: #FFFFFF;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #E2E8F0;
    margin: 0;
    list-style: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }

  .nav-links li a {
    display: inline-block;
    text-align: center;
  }

  /* Services Submenu Centering */
  .submenu {
    display: none;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    padding: 10px 0 !important;
    margin: 10px auto 0 auto !important; /* সেন্টারে এলাইন করবে */
    background: #F8FAFC !important;
    border-radius: 12px;
    width: 90%; /* কার্ড সাইজ সেন্টারে দেখাবে */
    box-sizing: border-box;
  }

  .submenu.open {
    display: block !important;
  }

  .submenu li {
    margin-bottom: 8px;
  }

  .submenu li:last-child {
    margin-bottom: 0;
  }

  .submenu li a {
    display: block;
    text-align: center;
    padding: 8px 12px !important;
    font-size: 0.8rem;
  }
}

  /* Humberger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}


/*  HERO SECTION LEFT */
  .hero {
    padding: 90px 2rem 80px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    min-height: 62vh;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #000000;
    color: white;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 1.4rem;
    border: 1px solid grey;
  }
  .hero h1 {
    color: #4B5563;
    font-size: 2.5rem;
    font-weight: 700;
  } 
  .hero span {
    color:var(--text-muted);
    font-style: italic;
  }

  .hero-desc {
    font-size: 1.1rem;
    color:var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 440px;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .dot-live {
    width: 7px; 
    height: 7px;
    background:var(--google-blue);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
    display: inline-block;
    margin-right: 8px;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.25); }
  }

  .btn-primary {
    background: black;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 14px rgba(58,153,102,0.35);
  }

  .btn-primary:hover { background: gray; transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: gray;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid gray;
    transition: border-color 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  .btn-ghost:hover { border-color: lightgray; color: gray; }

  .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid gray;
  }

  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: black;
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.78rem;
    color:gray;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }



   /*  HERO SECTION RIGHT */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .video-container {
    margin-top: 100px;
    position: relative;
    width: 100%; 
    padding-bottom: 56.25%; /* Perfect 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); 
    border: 1px solid var(--border-color); 
    margin-bottom: 4rem;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
 
.trusted-banner {
  background-color: #fff;
  padding: 10px 16px;
  display: flex;


}

.trusted-banner img {
  height: 50px;
  width: auto; 
}



  /* ── SERVICES SECTION ── */
  .services-section {
    padding: 10px 2rem;
    max-width: 1200px;
    margin: 0 auto;
   
  }

  .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
  }

  .section-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-muted); 
    margin-bottom: 0.5rem;
    display: inline-block;
  }

  .section-header h2 {
    font-size: 2rem;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
  }

  .section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
  }

  /* Grid Layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Google Style Minimalist Cards */
  .service-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.2s ease-in-out;
  }

  .service-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
  }

  .service-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* ── SERVICE CARD LINK & UNDERLINE ANIMATION ── */
.service-link {
  display: inline-block;
  position: relative;
  margin-top: 1.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--google-blue, #1a73e8); 
  text-decoration: none;
  padding-bottom: 2px; 
  transition: color 0.25s ease;
}


.service-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px; 
  bottom: 0;
  left: 0;
  background-color: var(--google-blue, #1a73e8); 
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
}


.service-link:hover::after {
  width: 100%;
}

.service-link:hover {
  color: #0b57d0;
  transform: translateX(2px); 
}

  .download-services {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center;

  }


  /* ── BRAND MARQUEE SLIDER ── */
  .brand-slider-section {
    padding: 60px 0;
    background: var(--bg-main);
    overflow: hidden;
    text-align: center;
  }

  .slider-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
  }

  /* Slider */
  .marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); 
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  }

  /* Moving Track */
  .marquee-track {
    display: flex;
    gap: 6rem; 
    animation: scroll-left 25s linear infinite;
    width: max-content;
  }

  /* Hover Effect */
  .marquee-container:hover .marquee-track {
    animation-play-state: paused;
  }

  /* Brand Card */
  .brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 0.75rem;
    transition: transform 0.2s ease;
    min-width: 160px;
  }

  .brand-card:hover {
    transform: scale(1.05); 
  }

  .brand-card img {
    height: 45px; 
    width: auto;
    object-fit: contain;
    filter: grayscale(100%); 
    opacity: 0.6;
    transition: all 0.2s ease;
  }

  .brand-card:hover img {
    filter: grayscale(0%); 
    opacity: 1;
  }

  /* Logo Text */
  .brand-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    border: 1px solid var(--border-color);
    padding: 2px 10px;
    border-radius: 20px;
    background: #f9f9f9;
  }

  /* Animation Loop */
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }



/* ── CASE STUDIES SECTION ── */
  .cases-section {
    padding: 10px 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }


  .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
  }


  .case-card {
    display: block;
    text-decoration: none;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
  }

  .case-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
  }


  .thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #f0f0f0;
  }

  .thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

 
  .case-card:hover .thumbnail-wrapper img {
    transform: scale(1.03);
  }

 
  .play-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease;
  }

 
  .case-card:hover .play-badge {
    background: #FF0000;
  }

 
  .case-info {
    padding: 2rem;
  }

 
  .case-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--google-blue);
    margin-bottom: 0.75rem;
  }

  .case-info h3 {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .case-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
  }


  .cases-cta {
    text-align: center;
    margin-top: 2rem;
  }

  
  /* ── FAQ STYLES ── */
.faq-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.faq-container {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-item summary {
  font-weight: 700;
  color: #0F172A;
  font-size: 1.05rem;
  outline: none;
}

.faq-item p {
  margin-top: 10px;
  color: #475569;
  line-height: 1.6;
  font-size: 0.95rem;
}


/* ==========================================
   FREE AUDIT CTA 
========================================== */

.audit-cta-section {
  padding: 80px 20px;
  background-color: #F8FAFC;
  width: 100%;
  box-sizing: border-box;
}

.audit-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #E2E8F0;
  box-sizing: border-box;
}

/* --- Left Column: Value Prop --- */
.audit-info {
  flex: 1;
  min-width: 0;
}

.audit-info h2 {
  font-size: 1.75rem;
  color: #0F172A;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 24px 0;
}

.audit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.audit-list li {
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.audit-list li span {
  font-size: 1rem;
  display: inline-block;
}

/* --- Social Proof & Rating --- */
.audit-social-proof-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
}

.audit-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stars-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars-rating .stars {
  color: #F59E0B;
  font-size: 1.15rem;
  letter-spacing: 2px;
  line-height: 1;
}

.stars-rating .rating-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
}

.trusted-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* --- Alternative Booking Link --- */
.audit-alt-link {
  font-size: 0.92rem;
  color: #64748B;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.audit-alt-link .btn-secondary {
  color: #1A73E8;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.audit-alt-link .btn-secondary:hover {
  color: #1557B0;
}

/* --- Right Column: Lead Form Card --- */
.audit-form-card {
  flex: 1;
  width: 100%;
  max-width: 440px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 20px;
  padding: 36px 32px;
  box-sizing: border-box;
}

.audit-form-card h3 {
  font-size: 1.3rem;
  color: #1E40AF;
  text-align: center;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audit-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #CBD5E1;
  outline: none;
  font-size: 0.95rem;
  background: #FFFFFF;
  color: #0F172A;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.audit-form input:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.audit-form .btn-submit {
  width: 100%;
  padding: 15px;
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-top: 4px;
}

.audit-form .btn-submit:hover {
  background: #1D4ED8;
}

.audit-form .btn-submit:active {
  transform: scale(0.99);
}



/* ── FOOTER STYLES ── */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  padding: 60px 20px 30px;
  color: #475569;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.footer-tagline {
  color: #64748B;
  line-height: 1.6;
  font-size: 0.88rem;
}

.social-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #94A3B8;
  display: block;
  margin-bottom: 12px;
  text-align: right;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: all 0.2s ease;
}

.social-links a:hover {
  color: #1A73E8;
  border-color: #1A73E8;
  background: #F0F7FF;
}

.footer-divider {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 30px 0 40px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #94A3B8;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: #1A73E8;
}

.footer-col .badge {
  background: #E0F2FE;
  color: #0369A1;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
  font-size: 0.82rem;
  color: #94A3B8;
}

.footer-email {
  color: #64748B;
  text-decoration: none;
}

.footer-email:hover {
  color: #1A73E8;
}






/* ========================================
   RESPONSIVE — Humberger Menu Global
=========================================== */

/* ─── 780px─── */
@media (max-width: 780px) {
  .menu-toggle {
    display: flex; 
  }

  .nav-links {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    gap: 15px;
  }

  
  .nav-links.active {
    display: flex;
  }

 
  @media (max-width: 300px) {
    nav {
      padding: 10px;
    }
    .nav-logo span {
      font-size: 14px; 
    }
  }
}

/* Humberger Menu Animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}



/* =================================================
   RESPONSIVE(Home Page) — TABLET 968px
================================================= */

@media (max-width: 968px) {

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 100px 1.5rem 60px;
    text-align: center;
    min-height: auto;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    -ms-text-size-adjust: auto;
  }

  .hero-desc {
    max-width: 600px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
    align-items: center;
  }

  .video-container {
    margin-top: 0;
  }

  .trusted-banner {
    margin-top: 30px;
  }


  /* AUDIT */
  .audit-container {
    flex-direction: column;
    padding: 32px 24px;
    gap: 40px;
  }

  .audit-form-card {
    max-width: 100%;
  }
}

/* =================================================
   RESPONSIVE(Home Page) — MOBILE 768px
================================================= */

@media (max-width: 768px) {
  

  /* ========================================
     SERVICES
  ======================================== */

  .services-section {
    padding: 60px 1.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }


  /* ========================================
     BRAND MARQUEE
  ======================================== */

  .marquee-track {
    gap: 3.5rem;
  }

  .brand-card img {
    height: 35px;
  }


  /* ========================================
     CASE STUDIES
  ======================================== */

  .cases-section {
    padding: 60px 1.5rem;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-info {
    padding: 1.5rem;
  }

  .case-info h3 {
    font-size: 1.15rem;
  }


  /* ========================================
     FAQ
  ======================================== */

  .faq-section {
    padding: 60px 16px;
  }

  .faq-container {
    margin-top: 30px;
  }

  .faq-item {
    padding: 14px 16px;
  }

  .faq-item summary {
    font-size: 0.95rem;
  }


  /* ========================================
     AUDIT CTA
  ======================================== */

  .audit-cta-section {
    padding: 50px 16px;
  }

  .audit-container {
    padding: 24px 16px;
  }

  .audit-info h2 {
    font-size: 1.8rem;
  }

  .audit-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .audit-form-card {
    width: 100%;
    padding: 28px 20px;
  }


  /* ========================================
     FOOTER - All Pages
  ======================================== */

  .footer-top {
    flex-direction: column;
  }

  .social-label {
    text-align: left;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* =================================================
   VERY SMALL(Home page) MOBILE 480px
================================================= */

@media (max-width: 480px) {
  
    .mobile-header {
    padding: 10px 14px;
  }

  .mobile-header .logo {
    max-width: 115px;
  }


  .hero {
    padding: 60px 16px 35px;
    gap: 1.75rem;
    margin-top: 15px;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    font-size: 0.9rem;
    padding: 0.7rem 1.1rem;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }

  .hero-stat-num {
    font-size: 1.35rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .services-section {
    padding: 50px 16px;
  }

  .services-grid {
    gap: 1.25rem;
  } 

  .service-card {
    padding: 1.5rem 1.25rem;
  }
  
  .cases-section {
    padding-top: 35px;
  }
  .case-info {
    padding: 1rem;
  }
  
  .audit-container {
    padding: 22px 14px;
  }

  .audit-form-card {
    padding: 22px 16px;
  }

  .audit-info h2 {
    font-size: 1.6rem;
  }
  
    .faq-section {
    padding: 50px 14px;
  }

  .faq-item {
    padding: 12px 14px;
  }

  .faq-item summary {
    font-size: 0.85rem;
  }

  .footer-links-grid {
    gap: 20px;
  }
}

/* ==========================================
          2nd Page 
========================================== */

/* ==========================================
   Google Ads Page Start 
========================================== */

  .service-ads {
  padding: 80px 20px;
  background: #F8FAFC;
  width: 100%;
}
  .ads-banner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  }

  .banner-text {
    flex: 1;
    max-width: 540px;
  }

  .banner-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1A73E8;
  }

  .banner-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
  }

  /* HTML/SVG Dashboard Container */
  .hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.analytics-hero-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}

 /* ── 3-COLUMN FRAMEWORK SECTION ── */
.framework-section {
  background: #FFFFFF;
  color: #0F172A;
  padding: 80px 0;
  font-family: 'DM Sans', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .sub-label {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* আইকন ও টেক্সটের মাঝের গ্যাপ */
  background: #F1F5F9;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid #E2E8F0;
}

.section-header .sub-label .section-icon {
  flex-shrink: 0;
  stroke: #475569;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.5px;
}

/* 3 Column Grid Layout */
.stages-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Stage Column Container */
.stage-column {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stage-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Highlight Stage 2 (Tech Setup) */
.stage-column.highlight-column {
  background: #FFFFFF;
  border: 2px solid var(--google-blue, #1A73E8);
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.08);
}

/* Stage Header Inside Column */
.stage-column-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E8F0;
}
.sub-svg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px; 
  background: #E0F2FE;
  color:var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  
  line-height: 1;
}

.stage-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--google-blue, #1A73E8);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  padding: 5px 5px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.stage-column-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.35;
}

/* Features List Container */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Feature Cards */
.feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stage-column.highlight-column .feature-card {
  background: #F8FAFC;
}

/* Check Icon */
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 50%;
  font-size: 0.75rem;
  color: var(--google-blue, #1A73E8);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.45;
  font-weight: 500;
}




/* ── PERFORMANCE SHOWCASE SECTION ── */
.performance-showcase-section {
  background: #FFFFFF;
  padding: 80px 0;
  font-family: 'DM Sans', sans-serif;
}

.showcase-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT COLUMN: SLIDER */
.showcase-left {
  flex: 1.2;
  min-width: 320px;

}

.slider-wrapper {
  position: relative;
  background: #F8FAFC;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); 
  overflow: hidden;
  aspect-ratio: 16 / 10; 
  height: 260px; 
  width: 100%;
  
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  display: block;
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain; 
  object-position: center;
  border-radius: 8px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #CBD5E1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--google-blue, #1A73E8);
  width: 24px;
  border-radius: 12px; 
}

/* RIGHT COLUMN: TEXT */
.showcase-right {
  flex: 1;
  min-width: 300px;
  margin-top: -25px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F1F5F9;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.showcase-right h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 16px 0;
  line-height: 1.15;
  letter-spacing: -1px;
}

.showcase-right p {
  font-size: 1.1rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}




.book-banner {
  font-family: 'DM Sans', sans-serif;
  background-color: #000;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 100px;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  margin: 20px;
  }

    /* SVG grid background */
  .book-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><defs><linearGradient id="bg-gradient" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="%23111111"/><stop offset="100%" stop-color="%23222222"/></linearGradient><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23333333" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23bg-gradient)"/><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-size: cover;
    opacity: 1;
    z-index: 0;
  }

  .banner-content {
    font-family: 'DM Sans', sans-serif;
    position: relative;
    z-index: 1;
    max-width: 60%;
  }

  .banner-content h5 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 20px;
  }

  .banner-content h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
  }

  .banner-button {
    position: relative;
    z-index: 1;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
  }

  .banner-button:hover {
    background: #f0f0f0;
  }

  .banner-button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
  }
  
  .banner-button a {
  text-decoration: none;
  color: inherit; 
}


/* ==========================================================================
   MOBILE RESPONSIVE FIXES (Targets Viewports Under 768px down to 304px)
   ========================================================================== */

@media screen and (max-width: 768px) {
  /* 1. Global Viewport Reset */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  /* 2. Banner Fixes */
  .ads-banner {
    padding: 5px 2px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }

  .banner-text {
    max-width: 100%;
  }
  .banner-text h1 {
    font-size: 1.8rem;
  }
   
    .hero-visual {
    justify-content: center;
  }


  /* 3. 3-Column Framework Conversion */
  .section-header h2{
    font-size: 1.5rem;
    padding: 0 20px; 
  }
  .stages-3col-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: nonet;
    gap: 16px;
    padding: 0 16px;
  }
  .stage-column {
    width: 100%;
  }

  /* 4. Performance Showcase Fixes */
  .showcase-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 16px;
    margin-top: -90px;
  }
  .showcase-left {
    min-width: 100%;   
    width: 100%;
  }
  .slider-wrapper {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .showcase-right {
    min-width: 100%;
    margin-top: 0;
    text-align: center;
  }
  .section-pill {
    margin-bottom: 25px;
  }
  .showcase-right h2 {
    font-size: 1.8rem;
  }

  /* 5. Booking CTA Layout Fixes */
  .book-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px; 
    margin: 15px;
    gap: 24px;
  }
  .banner-content {
    max-width: 100%;
  }
  .banner-content h2 {
    font-size: 26px;
  }
  .banner-button {
    width: 100%;
    justify-content: center;
  }
}



/* ==========================================
   Advanced Web Analytics & OCT
========================================== */

/* ── SERVICE HERO STYLES ── */
.service-hero {
  padding: 80px 20px;
  background: #F8FAFC;
  width: 100%;
}

.hero-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 540px;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1A73E8; /* গুগল ব্লু থিম */
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 32px;
}



.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.analytics-hero-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}

/* ── PROCESS SECTION STYLES ── */
.process-section {
  padding: 80px 20px;
  background: #FFFFFF;
  
}

.process-container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-title-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.sub-badge {
  background: #E0F2FE;
  color: var(--text-muted); 
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title-center h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0F172A;
  margin: 12px 0 8px;
}

.section-title-center p {
  color: #64748B;
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 20px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  border-color: #BFDBFE;
}

.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1A73E8;
  background: #EBF3FF;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* ── CORE SOLUTIONS PILLARS STYLES ── */
.pillars-section {
  padding: 80px 20px;
  background: #F8FAFC;
}

.pillars-container {
  max-width: 1140px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
  border-color: #BFDBFE;
}

.pillar-card-full {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  background: #EFF6FF;
  border-color: #DBEAFE;
}

.pillar-icon {
  background: #EBF3FF;
  color: #1A73E8; 
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}


.pillar-card:hover .pillar-icon {
  background: #1A73E8;
  color: #FFFFFF; 
}

.pillar-icon svg {
  display: block;
  stroke: currentColor; /* রঙ সরাসরি সিএসএস থেকে ফোর্স করার জন্য */
  flex-shrink: 0;
}

.pillar-content {
  flex: 1;
} 

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 10px 0;
}

.pillar-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.pillar-features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
}

.pillar-features li {
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.pillar-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1A73E8;
  font-weight: 800;
}

.grid-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

@media (max-width: 850px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card-full {
    grid-column: span 1;
    flex-direction: column;
  }

  .grid-two-col {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   Mobile Responsive OCT
========================================== */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .hero-visual {
    justify-content: center;
  }
}


/* ── SVG RESPONSIVE FIX (FOR MOBILE & TABLET) ── */

.hero-visual {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}

/* SVG Container Styling */
.hero-visual svg,
.cro-hero-svg,
.aeo-hero-svg,
.analytics-hero-svg {
  width: 100% !important;
  max-width: 420px; 
  height: auto !important; 
  display: block;
  overflow: visible;
}

/* Mobile Media Query Fix */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding: 10px 12px;
    gap: 32px;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
    padding: 0;
  }

  .hero-visual svg,
  .cro-hero-svg,
  .aeo-hero-svg,
  .analytics-hero-svg {
    max-width: 100%; 
  }
}


/* ==========================================
   Whats App Chat Widget
========================================== */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 9999; /* ensure it’s on top */
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Tablet */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }
  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }
}



/* ==========================================
   Privacy and Terms Pages Styles
========================================== */

/* ── LEGAL & POLICY PAGES STYLES ── */
.legal-page-container {
  padding: 40px 16px;
  background: #F8FAFC;
  width: 100%;
  box-sizing: border-box;
  margin-top: 30px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  color: #334155;
  line-height: 1.7;
  box-sizing: border-box;
  word-wrap: break-word;
}

.legal-content h1 {
  font-size: 1.75rem;
  line-height: 1.3;
  color: #0F172A;
  margin-bottom: 16px;
  word-break: keep-all; 
}

.legal-content h2 {
  font-size: 1.2rem;
  color: #1E293B;
  margin-top: 24px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 6px;
}

.legal-content p, 
.legal-content li {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}