* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #333;
}

/* Navigation */
header {
  background-color: #004d40;
  color: white;
  padding: 1rem 2rem;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer; /* Added cursor for better UX */
}

/* CTA Section */
.cta-section {
  padding: 2rem;
  text-align: center;
  background: #e0f7fa;
}
.cta-buttons {
  margin-top: 1rem;
}
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease; /* Added transition for hover effect */
}
.btn:hover {
  opacity: 0.9; /* Slight opacity change on hover */
}
.primary {
  background: #00796b;
  color: white;
  margin-right: 1rem;
}
.secondary {
  border: 1px solid #00796b;
  color: #00796b;
  background: white;
}
.secondary:hover {
  background: #00796b; /* Change background on hover */
  color: white; /* Change text color on hover */
}
.btn.small {
  font-size: 0.9rem;
  margin-top: 1rem; /* This already provides space after description/prices */
  display: inline-block;
}

/* Cards Section */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Increased min-width for better card content fitting */
  gap: 1.5rem; /* Increased gap for better spacing */
  padding: 2rem;
  max-width: 1200px; /* Max width for the grid to prevent too wide cards */
  margin: 0 auto; /* Center the grid */
}
.card {
  background: white;
  padding: 1.5rem; /* Slightly more padding inside cards */
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 8px; /* Slightly more rounded corners */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
  display: flex; /* Use flexbox for vertical alignment within card */
  flex-direction: column;
  justify-content: space-between; /* Distribute space between elements */
}
.card-image {
  background: #e0f2f1; /* Lighter background for image section */
  padding: 1.5rem 0; /* Adjusted padding */
  font-size: 2.5rem; /* Larger emoji/icon size */
  margin-bottom: 1rem;
  border-radius: 5px; /* Match card border-radius */
}
.card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: #004d40;
}
.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1; /* Allow paragraph to take available space */
}

/* Price Display Styles */
.price-container {
    margin-top: 10px;
    margin-bottom: 15px; /* Added some more space below prices */
    display: flex; /* Aligns prices side-by-side */
    justify-content: center; /* Center prices within their container */
    align-items: baseline; /* Align at the bottom of the text */
    gap: 10px; /* Space between original and discount price */
}

.original-price {
    font-size: 1em; /* Smaller than discount price */
    color: #888; /* Grey color for original price */
    text-decoration: line-through; /* Strikethrough effect */
    white-space: nowrap; /* Prevent price from wrapping */
}

.discount-price {
    font-size: 1.6em; /* Larger and more prominent */
    font-weight: bold;
    color: #e60000; /* Red color to highlight discount */
    white-space: nowrap; /* Prevent price from wrapping */
}


/* FAQ Section */
.faq {
  background: #f5f5f5;
  padding: 2rem;
  max-width: 900px; /* Max width for FAQ section */
  margin: 2rem auto; /* Center the FAQ section */
  border-radius: 8px; /* Consistent border-radius */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Lighter shadow */
}
.faq h3 {
  text-align: center;
  margin-bottom: 1.5rem; /* More space below heading */
  color: #004d40;
  font-size: 1.8rem;
}
.accordion-btn {
  width: 100%;
  padding: 1rem;
  background: #009688;
  color: white;
  border: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
  text-align: left;
  border-radius: 5px; /* Slightly larger border-radius */
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}
.accordion-btn:hover {
  background: #00796b; /* Darker green on hover */
}
.accordion-content {
  display: none;
  background: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  line-height: 1.6;
  color: #555;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1.5rem; /* More padding */
  margin-top: 3rem; /* Space above footer */
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    margin-top: 1rem;
    position: absolute; /* Position menu under navbar */
    top: 60px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    background-color: #004d40; /* Match header background */
    z-index: 1000; /* Ensure it's above other content */
    padding: 1rem 0;
  }
  .nav-links li {
    text-align: center;
    margin: 0.5rem 0;
  }
  .nav-links a {
    padding: 0.5rem 0;
    display: block; /* Make links block to fill width */
  }
  .nav-links.active {
    display: flex;
  }

  .cta-section {
    padding: 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    display: flex;
    gap: 1rem; /* Space between buttons */
  }
  .btn.primary {
    margin-right: 0; /* Remove right margin on small screens */
  }

  .cards {
    grid-template-columns: 1fr; /* Single column layout on small screens */
    padding: 1rem;
  }
}