/* ==========================
   ABOUT US - CORDOVA COURIER STYLING
========================== */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #003366;
  line-height: 1.6;
}

header.header {
  background: linear-gradient(90deg, #ff6600, #0033cc);
  color: white;
  text-align: center;
  padding: 120px 20px 60px; /* add top padding for fixed navbar */
}

header.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header.header p {
  font-size: 1.3rem;
  margin-top: 0;
}

.about-courier {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.about-courier h2 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 30px;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.7;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.about-card {
  background-color: #003366;
  color: white;
  flex: 1 1 280px;
  max-width: 320px;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.about-card a {
  color: #ffcc00;
  text-decoration: underline;
}

footer.footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

footer.footer a {
  color: #ffcc00;
  text-decoration: none;
}

@media (max-width: 768px) {
  header.header h1 {
    font-size: 2rem;
  }

  header.header p,
  .about-content,
  .about-card p {
    font-size: 1rem;
  }

  .about-courier h2 {
    font-size: 1.8rem;
  }

  .about-card h3 {
    font-size: 1.1rem;
  }

  footer.footer {
    font-size: 0.9rem;
  }
}
