* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f5f7fb;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background: #07152f;
  color: #ffffff;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image img {
  width: 250px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
}

.site-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

nav a {
  margin-left: 1.5rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

nav a:hover {
  color: #ffffff;
}

.section {
  padding: 3rem 4rem;
  background: #f5f7fb;
}

.section.alt {
  background: #ffffff;
}

.section-header {
  margin-bottom: 0.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.8rem;
  margin: 0;
}

.section-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 640px;
}

.center-image img {
 margin-top: 3rem;
 width: 100%;
 opacity: 90%;
 border-radius: 15px;
 box-shadow: 0 20px 20px rgba(0, 0, 0, 0.9);
 border-radius: 1rem; 
 object-fit: cover; 
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.card-image img {
 width: 100%;
 opacity: 100%;
 border-radius: 10px;
 box-shadow: 0 5px 5px rgba(0, 0, 0, 0.9);
 object-fit: cover; 
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.card h2 {
  margin-top: 2px;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}


.list {
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: #374151;
}

.list li {
  margin-bottom: 0.4rem;
}

.pro-list {
  margin-bottom: 0.4rem;
  text-align: right;
  font-style: italic;
}


footer {
  padding: 1.2rem 1.2rem;
  background: #020617;
  color: #9ca3af;
  font-size: 0.68rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* RESET OLD FOOTER STYLES */
footer, .site-footer {
  all: unset;
  display: block;
}

/* NEW FOOTER DESIGN */
.site-footer {
  background: #020617;
  padding: 1.5rem 2rem;
  color: #9ca3af;
  font-size: 0.8rem; 
}

.section-up {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.logo-footer img {
  width: 160px;
  height: 40px;
  }

.footer-menu {
   text-align: right;
   margin-bottom: 0.5rem;
}

.footer-menu a {
  color: #e5e7eb;
  margin-left: 1.2rem;
  font-size: 0.8rem;
   text-align: right;
}

.footer-menu a:hover {
  color: #ffffff;
  font-size: 0.9rem;
}

.policy-own a {
  color: #e5e7eb;
  margin-left: 1.2rem;
  font-size: 0.6rem;
}

.policy-own a:hover {
  color: #ffffff;
  font-size: 0.7rem;
}

/* LEFT‑ALIGNED BOTTOM TEXT */
.footer-bottom {
  text-align: left;   /* ← FIX: forces left alignment */
  line-height: 1.5;
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-copy {
  font-size: 0.75rem;
}

.footer-subtext {
  font-size: 0.72rem;
  text-align: right;
  opacity: 0.7;
}


/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1b263b;
  color: #fff;
  padding: 15px;
  text-align: center;
  display: none;
  z-index: 9999;
  font-size: 0.85rem;
}

.cookie-popup a {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-popup button {
  background: #38bdf8;
  border: none;
  padding: 8px 15px;
  color: #fff;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 6px;
}


/* ============================================================
   RESPONSIVE DESIGN — ABOUT PAGE
   Matches your requested breakpoint structure
   ============================================================ */


/* ============================================================
   LARGE DESKTOP (1440px and above)
   ============================================================ */
@media (min-width: 1440px) {

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

  .two-column {
    grid-template-columns: 1.4fr 1fr;
  }

  .hero-text h1 {
    font-size: 2.6rem;
  }
}



/* ============================================================
   DESKTOP (max-width: 1200px)
   ============================================================ */
@media (max-width: 1200px) {

  header {
    padding: 1rem 2rem;
  }

  .two-column {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .section {
    padding: 2rem 2rem;
  }
}



/* ============================================================
   DESKTOP MID‑RANGE (1024px – 1439px)
   ============================================================ */
@media (min-width: 1024px) and (max-width: 1439px) {

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 2rem 2.5rem;
  }

  .two-column {
    gap: 2rem;
  }
}



/* ============================================================
   TABLET (max-width: 1023px)
   ============================================================ */
@media (max-width: 1023px) {

  header {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 2rem 1.5rem;
  }

  .center-image img,
  .center-image2 img {
    width: 100%;
    height: auto;
  }
}



/* ============================================================
   MOBILE (425px – 767px)
   ============================================================ */
@media (max-width: 767px) {

/* HEADER MENU FIX */ 

    nav {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; gap: 0.5rem;
  } 

    nav a {
    margin: 0 !important;
    padding: 0.4rem 0.6rem;
  } 

 .section-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
    font-size: 0.95rem;
  }

  .card {
    padding: 1.2rem;
  }

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

  /* FOOTER LOGO CENTER FIX */ 

    .section-up {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem; 
  } 
    .logo-footer img {
    margin: 0 auto;
    } 

/* FOOTER MENU SPACING FIX */ 
    .footer-menu {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 0.6rem; 
  } 
    .footer-menu a {
     margin: 0 !important;
  } 
}


/* ============================================================
   SMALL MOBILE (max-width: 424px)
   ============================================================ */
@media (max-width: 424px) {

  header img {
    width: 180px;
    height: auto;
  }

  .section {
    padding: 1.5rem 1rem;
  }

  .card {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  nav a {
    font-size: 0.85rem;
  }
}



/* ============================================================
   TOUCH DEVICE OPTIMIZATIONS
   (For mobile & tablets with no hover)
   ============================================================ */
@media (hover: none) and (pointer: coarse) {

  a,
  button {
    padding: 0.6rem 1rem;
  }

  .card,
  .partner-card {
    border-radius: 1rem;
  }

  input,
  textarea {
    font-size: 1rem;
  }
}
