/* styles.css */

body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  background-color: #f0f4f8;
  color: #333;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.section {
  width: 100%;
  max-width: 800px;
  padding: 30px;
  box-sizing: border-box;
}
.top-section {
  padding: 30px;
  text-align: center;
  font-size: 1.1em;
  color: #333;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 40px 0;
}
.bottom-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 48%;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.card:hover {
  transform: scale(1.05);
}
.card h3 {
  margin-top: 0;
  font-size: 1.8em;
  color: #ff7f50;
  font-weight: bold;
}
.card p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 5px;
}
.total-cost {
  font-size: 0.8em;
  color: #666;
  margin-top: 0;
}
button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background: linear-gradient(135deg, #ff7f50, #ff6347);
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
button:hover {
  background-color: #ff6347;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
button:hover {
  background-color: #ff6347;
  transform: scale(1.05);
}
input[type="email"], input[type="text"], select {
  padding: 15px;
  width: calc(100% - 40px);
  max-width: 400px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
input[type="email"], input[type="text"], select:focus {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.features {
  text-align: left;
  margin-top: 20px;
  font-size: 1.1em;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.feature-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 48%;
  text-align: center;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
}
.feature-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.feature-item h4 {
  font-weight: bold;
  color: #444;
  margin-bottom: 10px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  .card-container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 90%;
    margin-bottom: 20px;
  }
  .features .feature-row {
    flex-direction: column;
    align-items: center;
  }
  .feature-item {
    width: 90%;
    margin-bottom: 20px;
  }
  h2, h3 {
    font-size: 1.5em;
  }
  button {
    font-size: 14px;
    padding: 8px 16px;
  }
  input[type="email"], input[type="text"], select {
    width: calc(100% - 20px);
  }
  #popup-modal > div {
    width: 90%;
    padding: 15px;
  }
  #popup-form input, #popup-form select {
    width: 100%;
  }
}

/* Add import for Google Fonts (inline to avoid CSP issue) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
