* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

header img {
  max-width: 150px; /* Scaled logo */
  margin-bottom: 15px;
  border-radius: 12px;
}

/* Navigation */
nav {
  background: #262626;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

nav a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #fca311;
}

/* Hero Section */
.hero {
  background: #333;
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
}

/* Section Headings */
h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #1a1a1a;
}

/* Cards */
.services-list, .pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
  margin-bottom: 15px;
  color: #1a1a1a;
}

.card p {
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Pricing */
.price {
  font-size: 28px;
  color: #fca311;
  font-weight: 700;
  margin-bottom: 15px;
}

.features {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.cta {
  background: #fca311;
  color: white;
  padding: 14px 25px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.cta:hover {
  background: #e08b0b;
}

/* Lists */
ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

ul li {
  padding: 10px;
  font-size: 18px;
}

/* Forms */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-color: #fca311;
  outline: none;
}

button {
  background: #1a1a1a;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #333;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 35px 20px;
  margin-top: 40px;
  font-size: 14px;
}

/* Responsive tweaks */
@media(max-width: 768px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* ===== Card Color-Coding & Pricing Enhancements ===== */

/* Optional: Color-code cards for clarity */
.pricing-cards .card:nth-child(1) { background-color: #e6f7ff; } /* Standard Delivery */
.pricing-cards .card:nth-child(2) { background-color: #fff0e6; } /* Rush / ASAP */
.pricing-cards .card:nth-child(3) { background-color: #e6ffe6; } /* Add-Ons */
.pricing-cards .card:nth-child(4) { background-color: #fffbe6; } /* Subscription/Bulk */
.pricing-cards .card:nth-child(5) { background-color: #ffe6f0; } /* Terms & Conditions or extra card */

/* Optional: Make card headings stand out more */
.pricing-cards .card h3 {
  color: #004080;
}

/* Optional: Price text highlight */
.pricing-cards .price {
  color: #fca311; /* Keeps your existing highlight */
  font-weight: 700;
}

/* Hover effect override for colored cards */
.pricing-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Ensure responsiveness remains consistent */
@media(max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}
