/* === BASE STYLES === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f3e9da;
  color: #1a1a1a;
  line-height: 1.6;
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* === NAVIGATION BAR === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none !important;
  background-color: transparent !important;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: none !important;
}

header div {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffdf6c;
  background: #003e36;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
}

nav {
  margin-right: auto;
  margin-left: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

header a:last-of-type {
  background: #fff;
  color: #003e36;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-left: auto;
}

/* === HERO SECTION === */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background-size: cover;
  color: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.hero-content {
  flex: 1 1 50%;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
}

.hero-content span {
  display: block;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 420px;
}

.primary-btn {
  background-color: #003e36;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
}

.hero-graphic {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}

.hero-graphic img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 400px;
  object-fit: contain;
}

.dashboard-card {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  background-color: #f9f4e8;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  width: 270px;
  font-size: 0.9rem;
  color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* === CARD STYLES === */
.card-section {
  margin: 4rem 0;
  background: transparent;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  background: #fff5e9;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  align-items: center;
  padding: 2rem;
}

.card-text, .card-image {
  flex: 1 1 50%;
  padding: 1.5rem;
}

.card-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: auto;
  max-width: 100%;
  max-height: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.card img {
  width: auto;
  max-width: 100%;
  max-height: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding: 0 1rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 350px;
  flex: 1 1 30%;
  box-sizing: border-box;
}

.card.full-width {
  max-width: 100% !important;
  flex: 1 1 100% !important;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.card h2, .card h3 {
  font-weight: 800;
  color: #002F2F;
}

.card p {
  color: #333;
  font-size: 1rem;
}

.stat-card {
  text-align: center;
  background: #003e36;
  color: #fff;
  border-radius: 14px;
}

.stat-card strong {
  color: #ffdf6c;
}

/* === FOOTER === */
footer {
  background: #f3e9da;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

footer .card-grid {
  text-align: left;
}

footer p, footer a {
  font-size: 0.95rem;
  color: #333;
}

footer h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #003e36;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .dashboard-card {
    position: static;
    margin-top: 2rem;
  }

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

  .card-text, .card-image {
    flex: 1 1 100%;
  }

  .page-wrapper {
    padding: 1.5rem;
  }

  .card.full-width {
    padding: 1.5rem 1rem;
  }

  nav {
    margin: 1rem 0;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .card-image img,
  .card img {
    max-width: 100%;
    max-height: 280px;
  }
}
body {
  background: url('background5.png') center/cover no-repeat fixed;
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
  padding: 40px 20px;
  margin: 0;
}

.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.7s ease-in-out;
  backdrop-filter: blur(5px);
}

.about-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #003b2f;
}

.about-wrapper p {
  font-size: 1.125rem;
  margin-bottom: 15px;
}

.highlight {
  font-weight: 600;
  color: #005f4b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  /* Fix header/nav layout */
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav {
    margin: 1rem 0;
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    align-items: center;
  }

  header a:last-of-type {
    margin: 1rem auto 0;
  }

  /* Fix hero section layout */
  .hero-section {
    flex-direction: column;
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
    background-size: cover;
  }

  .hero-content {
    flex: 1 1 100%;
    padding: 1rem 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin: 1rem auto;
  }

  .primary-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-graphic {
    flex: 1 1 100%;
    flex-direction: column;
    padding: 1rem 0;
    position: static;
  }

  .hero-graphic img {
    max-height: 300px;
    width: 90%;
    object-fit: contain;
  }

  .dashboard-card {
    position: static;
    margin-top: 1.5rem;
    width: 90%;
    font-size: 0.95rem;
  }

  /* Cards and layout */
  .card-row {
    flex-direction: column;
  }

  .card-text,
  .card-image {
    flex: 1 1 100%;
    padding: 1rem;
  }

  .card-grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%;
  }

  .page-wrapper {
    padding: 1rem;
  }

  .card-section {
    margin: 2rem 0;
  }

  .card.full-width {
    padding: 1.5rem 1rem;
  }
}