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

:root {
  --bg: #efefef;
  --white: #ffffff;
  --text: #1c1c1c;
  --muted: #444;
  --accent: #2e5f7a;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  --max-width: 1500px;
  --radius: 8px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.topbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  background: var(--accent);
  color: white;
}

.hero {
  margin: 28px 0 36px;
  border-radius: 4px;
  overflow: hidden;
  min-height: 180px;
  box-shadow: var(--shadow);
}

.hero-home {
  background: linear-gradient(rgba(180, 196, 214, 0.45), rgba(180, 196, 214, 0.45)),
    url("/images/background.png") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
}

.hero-overlay h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.page-title {
  padding: 30px 0 18px;
}

.page-title h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
}

.card-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;


}

.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  height: auto;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  width: 100%;

}

.card-image {
  height: 340px;
  object-fit: cover;
}

.card-body {
  padding: 16px 18px 20px;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.card-body strong,
.content-block strong,
.large-text strong {
  color: var(--text);
}

.three-column-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  align-items: start;
  margin-bottom: 50px;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-block p,
.large-text {
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.5;
}

.content-image {
  width: 100%;
  height: clamp(220px, 26vw, 300px);
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.lower-image {
  margin-top: 8px;
}

.contain-image {
  object-fit: contain;
  background: transparent;
}

.investors-layout .content-image {
  height: clamp(220px, 24vw, 270px);
}

.contact-box {
  text-align: center;
  margin-top: 10px;
}

.contact-text {
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  color: #f7f0f0;
  margin-bottom: 30px;
}

.contact-text a {
  color: #19eedc;
  text-decoration: none;
  font-weight: bold;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-logo {
  width: 300px;
  max-width: 80%;
}

.tagline {
  font-size: clamp(2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #212222;
  text-align: center;
  flex: 0 1 auto;

}

.card-reverse {
  flex-direction: column-reverse;
}





@media (max-width: 1200px) {
  .card-image {
    height: clamp(220px, 32vw, 420px);
  }

  .card-body {
    font-size: 1rem;
  }

  .tagline {
    width: 100%;
    text-align: center;
    order: 3;
  }
}

@media (max-width: 992px) {

  .card-grid-3,
  .three-column-layout {
    grid-template-columns: 1fr;
  }

  .content-image,
  .card-image {
    height: 280px;
  }

  .nav-wrapper {
    flex-direction: column;
    align-items: flex-start;

  }



  .nav {
    width: 100%;
  }

  .tagline {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 20px, var(--max-width));
  }

  .brand img {
    height: 46px;
  }

  .nav a {
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .hero,
  .hero-overlay {
    min-height: 140px;
  }

  .page-title {
    padding: 22px 0 12px;
  }

  .content-image,
  .card-image {
    height: 220px;
  }

  .card-body,
  .content-block p,
  .large-text {
    font-size: 0.98rem;
  }

  .contact-text {
    font-size: 1rem;
  }
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;

  z-index: -1;
}

sup {
  font-size: 0.8em;
}

.nav-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  justify-self: center;
}

.nav {
  justify-self: center;
  transform: translateX(58px);
}

.tagline {
  justify-self: start;
  margin-left: 22px;
}

.slogan {
  font-size: clamp(1.3rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: #2e5f7a;
  font-style: italic;
  display: inline-block;
  white-space: nowrap;
}