:root {
  --blue: #066591;
  --yellow: #b58103;
  --gray: #1f2937;
  --light-border: #d1d5db;
  --white: #ffffff;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fef9c3, #e0f2fe);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--gray);
  padding-bottom: 2rem;
}

/* ===============================
   Navbar
================================== */
.navbar {
  width: 100%;
  background-color: var(--white);
  padding: 16px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2rem;
}

.navbar-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.navbar-logo img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  background: var(--white);
}

/* ===============================
   Card Container
================================== */
.card-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===============================
   Card Styles
================================== */
.card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-logo {
  width: 30%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid var(--light-border);
}

.card-logo img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.card-content {
  width: 70%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.card-content h2 {
  font-size: 1.4rem;
}

.card-content h2 a {
  color: black;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-content h2 a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.card-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.5;
}

/* ===============================
   CTA Button
================================== */
.cta-button {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 1rem;
  background: var(--yellow);
  color: var(--white);
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #9a6e01;
}

/* ===============================
   Responsive Styles
================================== */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }

  .card-logo,
  .card-content {
    width: 100%;
    text-align: center;
  }

  .card-content {
    align-items: center;
  }

  .navbar {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }
}
