* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  border-bottom: 1px solid #f3f4f6;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #111827;
}

/* Hide Bank Account nav link across desktop and mobile menus */
.nav-link[href*='bank-account'],
.mobile-link[href*='bank-account'] {
  display: none;
}

.btn-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.43) 8.14%, rgba(255, 255, 255, 0) 63.41%), linear-gradient(0deg, rgba(255, 255, 255, 0.54) -6.5%, rgba(255, 255, 255, 0) 9.75%), #FC903C;
  color: #21214A;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #ea580c;
}

.btn-secondary {
  background-color: white;
  color: #312e81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  border: none;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #f9fafb;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #111827;
  position: relative;
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #111827;
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
  background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.mobile-menu {
  display: none;
  background-color: white;
  border-top: 1px solid #f3f4f6;
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-link {
  display: block;
  color: #374151;
  text-decoration: none;
  padding: 0.5rem 0;
}

.mobile-link:hover {
  color: #111827;
}

.mobile-btn {
  width: 100%;
  margin-top: 0.75rem;
}

/* Hero Section */
.hero {
  padding: 5rem 1rem 0 2rem;
  background: radial-gradient(60.88% 60.88% at 50% 109.17%, rgba(252, 144, 60, 0.7) 0%, rgba(252, 144, 60, 0) 100%), linear-gradient(180deg, rgba(33, 65, 218, 0.28) 30%, rgba(33, 65, 218, 0) 70.26%), #21214A;
border-radius: 0px 0px 70px 70px;
  min-height: 85vh;
  display: flex;
  align-items: end;
}
 
.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.container-small {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #c7d2fe;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-phone {
  display: flex;
  justify-content: center;
}

.hero-phone img {
  max-width: 100%;
   
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background-color: #111827;
  border-radius: 3rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #312e81, #3730a3);
  border-radius: 2.5rem;
  padding: 1.5rem;
  overflow: hidden;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.phone-logo-icon {
  width: 24px;
  height: 24px;
  background-color: #f97316;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.phone-logo-text {
  color: white;
  font-weight: 600;
}

.phone-balance {
  text-align: center;
  margin-bottom: 2rem;
}

.balance-label {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.balance-amount {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.balance-currency {
  color: #9ca3af;
  font-size: 1.125rem;
}

.phone-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.phone-btn {
  width: 48px;
  height: 48px;
  background-color: #f97316;
  border-radius: 50%;
}

.phone-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #34d399, #3b82f6);
  border-radius: 8px;
}

.card-title {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.card-subtitle {
  color: #d1d5db;
  font-size: 0.75rem;
}

/* Countries Section */
.countries {
    padding: 2rem 1rem; 
    border-radius: 0 0 70px 70px;
}
.countries-outer {
    padding:  0;
    background-color: #F2F2F9;
    border-radius: 0 0 70px 70px;
}
.countries-title {
     
    color: #333333;
    font-size: 32px;
    margin-bottom: 1.5rem;
    font-weight: normal;
    width: 330px;
    text-align: left;
}

.countries-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.countries-flags img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  max-width: 64px;
  max-height: 64px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  flex: 0 0 auto;
}

.countries-flags img:not([src*="images/appindex/"]) {
  transform: scale(0.8);
  transform-origin: center;
}

.flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.flag-colombia {
  background: linear-gradient(to bottom, #fbbf24 50%, #3b82f6 25%, #ef4444 25%);
}

.flag-guatemala {
  background: linear-gradient(to bottom, #60a5fa 33%, white 33% 66%, #60a5fa 66%);
}

.flag-panama {
  background: linear-gradient(135deg, #3b82f6 50%, white 50%, #ef4444 50%);
}

.flag-brazil {
  background: linear-gradient(to bottom, #22c55e 40%, #fbbf24 20%, #3b82f6 40%);
}

.flag-honduras {
  background: linear-gradient(to bottom, #3b82f6 33%, white 33% 66%, #3b82f6 66%);
}

.flag-dominican {
  background: linear-gradient(135deg, #3b82f6 50%, white 50%, #ef4444 50%);
}

/* Features Section */
.features {
  padding: 5rem 1rem;
}

.feature-row {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-visual {
  display: flex;
  justify-content: center;
}
.feature-visual img {
  width: 100%;
}

.visual-box {
  width: 256px;
  height: 256px;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-box-blue {
  background: linear-gradient(135deg, #e0e7ff, #eef2ff);
}

.visual-box-orange {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

.visual-content {
  position: relative;
}

.passport {
  width: 128px;
  height: 160px;
  background-color: #3730a3;
  border-radius: 1rem;
}

.globe {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 96px;
  height: 96px;
  background-color: #4f46e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.id-card {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  width: 80px;
  height: 112px;
  background-color: #f97316;
  border-radius: 0.75rem;
}

.visual-content-cards {
  position: relative;
}

.debit-card {
  width: 160px;
  height: 128px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.debit-card::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 32px;
  background-color: #fcd34d;
  border-radius: 4px;
  opacity: 0.75;
}

.bank-building {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 128px;
  height: 160px;
  background-color: #3730a3;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: rotate(-12deg);
}

.building-top {
  width: 100%;
  height: 48px;
  background-color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.currency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.currency {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.currency-dollar {
  background-color: #f97316;
  font-size: 1.5rem;
}

.currency-eur {
  background-color: #3b82f6;
  font-size: 1rem;
}

.currency-usd {
  background-color: #4f46e5;
  font-size: 1rem;
}

.currency-mxn {
  background-color: #a855f7;
  font-size: 0.875rem;
}

.feature-title {
  font-size: 2rem;
  font-weight: bold;
  color: #312e81;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.checkmark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.125rem;
  position: relative;
}

.checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
}

.checkmark-blue {
  background-color: #4D4DB2;
}

.checkmark-orange {
  background-color: #f97316;
}

.feature-item span:last-child {
  color: #374151;
}

/* Info Cards Section */

.info-cards {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.64) 100%), url('images/appindex/bg-2.png');
    background-color: #C7C7E6; /* Fallback color */
    background-blend-mode: overlay;
    background-size: cover, 100px auto; /* Gradient covers full, image is small */
    background-position: right bottom; /* Gradient centered, image in bottom-right */
    background-repeat: no-repeat, no-repeat; /* Prevent repeat for both layers */

    border-radius: 20px;
    padding: 4rem;
    margin-bottom: 25px;
}
 
.cards-grid {
  display: grid;
  gap: 2rem;
}

.cards-column {
  display: grid;
  gap: 2rem;
}

.info-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.card-icon-box {
  width: 75px;
  height: 75px;
 background: linear-gradient(180deg, rgba(242, 242, 255, 0.66) -3.12%, rgba(227, 227, 255, 0.66) 54.41%, rgba(212, 212, 248, 0.66) 101.04%), #FFFFFF;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
/* Group 2925 */

 
.card-title {
  font-size: 2rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.card-title-small {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card-description {
  color: #4b5563;
  font-size: 1.2rem;
}

.card-description-small {
  color: #4b5563;
  font-size: 1.2rem;
}

/* FAQ Section */
.faq {
  padding: 5rem 1rem;
}

.faq-grid {
  display: grid;
  gap: 3rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

.faq-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
      font-size: 18px;
}

.btn-outline {
  color: #f97316;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f97316;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-outline:hover {
  background-color: #fff7ed;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  width: 100%;
  background-color: white;
  border: 2px solid #e5e7eb;
  border-radius: 5rem;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: box-shadow 0.3s;
      font-size: 18px;
}

.faq-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-item span:first-child {
  color: #111827;
  font-weight: 500;
}

.faq-arrow {
  color: #9ca3af;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.faq-item:hover .faq-arrow {
  color: #f97316;
}

/* Download Section */
.download {
  background-image: 
    linear-gradient(180deg, rgba(33, 65, 218, 0.28) 4.43%, rgba(33, 65, 218, 0) 52.81%),
    radial-gradient(57.37% 57.37% at 50% 112.68%, rgba(252, 144, 60, 0.66) 0%, rgba(252, 144, 60, 0) 100%),
    url('images/appindex/aap-bg.png'); /* Optional: Add image if needed */
  
  background-color: #21214A; /* This acts as a fallback color */
  background-blend-mode: overlay;
  background-size: contain; /* Changed to 'cover' for better responsiveness */
  background-position: right; /* More balanced than 'right' usually */
  background-repeat: no-repeat;
  border-radius:20px ;
  padding: 3rem 1rem;
      margin-bottom: 25px;
}
 
.download-content {
  text-align: center;
}

.qr-code {
  display: inline-block;
  background-color: white; 
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.qr-placeholder {
  width: 192px;
  height: 192px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border-radius: 15px;
}

.download-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.download-subtitle {
  color: #c7d2fe;
  margin-bottom: 2rem;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
      justify-content: center;
}

.store-btn {
  background-color: #000;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color 0.3s;
}

.store-btn:hover {
  background-color: #1f2937;
}

.store-icon {
  font-size: 1.5rem;
}

.store-text {
  text-align: left;
}

.store-label {
  font-size: 0.75rem;
}

.store-name {
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #1e1b4b;
  color: white;
  padding: 4rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
   
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icon:hover {
  color: white;
}

.copyright {
  color: #fff;
  font-size: 0.875rem;
}

.footer-disclaimer {
  margin-top: 0;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
}

/* Legal / FAQ page */
.legal-page {
  padding-top: 64px;
}

.legal-hero {
  background: linear-gradient(180deg, #f2f2f9 0%, #ffffff 100%);
  padding: 4rem 1rem 2rem;
}

.legal-eyebrow {
  color: #f97316;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.legal-title {
  color: #21214a;
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.legal-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

.legal-content-wrap {
  padding: 0 1rem 4rem;
}

.legal-document {
  background-color: #ffffff;
  border: 1px solid #ececf5;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 45px -30px rgba(33, 33, 74, 0.25);
}

.faq-doc-section + .faq-doc-section {
  margin-top: 2.5rem;
}

.faq-document h2 {
  color: #21214a;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.faq-document h3 {
  color: #1f2937;
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
}

.faq-document p,
.faq-document li {
  color: #4b5563;
  font-size: 1rem;
}

.faq-document ul {
  padding-left: 1.25rem;
}

.faq-document li + li,
.faq-document p + ul,
.faq-document ul + p {
  margin-top: 0.5rem;
}

.legal-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ececf5;
}

.legal-note p + p {
  margin-top: 0.5rem;
}

.legal-embed {
  width: 100%;
  min-height: 1200px;
  border: 0;
  border-radius: 16px;
  background-color: #ffffff;
}

.legal-embedded-content {
  width: 100%;
  min-height: 1200px;
  border-radius: 16px;
  background-color: #ffffff;
  overflow-wrap: anywhere;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.info-tile {
  border: 1px solid #ececf5;
  border-radius: 16px;
  padding: 1.25rem;
  background-color: #fafaff;
}

.info-tile h3 {
  margin-bottom: 0.5rem;
  color: #21214a;
}

.steps-list {
  display: grid;
  gap: 1rem;
}

.step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid #ececf5;
  border-radius: 16px;
  padding: 1rem;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #21214a;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item h3 {
  color: #21214a;
  margin-bottom: 0.5rem;
}

.step-item ul {
  padding-left: 1.25rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-weight: 600;
  color: #21214a;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #d4d4f8;
  border-color: #818cf8;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.inline-link {
  color: #21214a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #21214a;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .hero-title {
    font-size: 3rem;
  }

  .phone-mockup {
    width: 320px;
    height: 640px;
  }

  .download-buttons {
    flex-direction: row;
  }

  .footer-bottom {
    
    justify-content: space-between;
  }

  .footer-disclaimer {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.70rem;
  }

  .countries-flags {
    gap: 3rem;
  }

  .countries-flags-inner {
    gap: 3rem;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row-reverse {
    direction: rtl;
  }

  .feature-row-reverse > * {
    direction: ltr;
  }

  .feature-title {
    font-size: 2.25rem;
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .legal-document {
    padding: 3rem;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* Flag carousel — title fixed on left, single set of flags rotates without duplicates */
.countries-flags-track {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.countries-flags-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.countries-flags-inner img {
  flex: 0 0 auto;
}


