/* Global Styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Spectral", serif;
  background-color: #f8f9fa;
  /* Lighter, cleaner grey */
  color: #343a40;
  font-size: 20px;
  line-height: 1.6;
}

h2 {
  color: #2b8a3e;
  /* Darker green for headings */
  padding: 40px 0;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header & Nav */
header {
  padding: 0;
  text-align: center;
  border-bottom: 2px solid #e9ecef;
  background: white;
  margin-bottom: 20px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.navbar {
  display: flex;
  background: linear-gradient(135deg, #37b24d 0%, #2b8a3e 100%);
  margin: 0 auto 40px;
  max-width: 1000px;
  width: 95%;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  /* Pill shape */
  box-shadow: 0 4px 15px rgba(55, 178, 77, 0.3);
}

.link {
  text-decoration: none;
  color: #fff;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 25px;
}

.link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Common Layouts */
.body {
  flex: 1;
  /* Pushes footer down */
}

/* Pricing Grid */
.grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* Better responsiveness */
  gap: 30px;
}

.cards {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f3f5;
}

.cards:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(55, 178, 77, 0.2);
}

.cards h2 {
  font-size: 28px;
  padding: 0 0 20px 0;
  color: #343a40;
}

.cards .description {
  width: 100%;
  font-size: 18px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.cards ul {
  list-style: none;
  text-align: center;
}

.cards li {
  padding: 8px 0;
  border-bottom: 1px dashed #dee2e6;
}

.cards li:last-child {
  border-bottom: none;
}

.price {
  font-weight: 800;
  color: #37b24d;
  font-size: 42px;
  margin-top: auto;
}

/* Review Cards */
.review-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 24px;
}

.review-card {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* Softer shadow */
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: scale(1.02);
}

.review-card:nth-child(even) {
  flex-direction: row-reverse;
}

.review-img {
  width: 45%;
  min-height: 350px;
  object-fit: cover;
}

.review-content {
  width: 55%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.review-text {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
  color: #555;
}

.review-author {
  font-weight: 700;
  text-align: right;
  color: #37b24d;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About / Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  padding: 20px;
}

.team-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(55, 178, 77, 0.15);
}

.team-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 5px solid #37b24d;
  padding: 3px;
  background: white;
}

.team-name {
  color: #343a40;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Contact Form */
.contact-container {
  background-color: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto 60px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #343a40;
  font-size: 18px;
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 18px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #f8f9fa;
}

.form-control:focus {
  border-color: #37b24d;
  box-shadow: 0 0 0 4px rgba(55, 178, 77, 0.1);
  outline: none;
  background-color: #fff;
}

.btn-submit {
  background: linear-gradient(135deg, #37b24d 0%, #2b8a3e 100%);
  color: #fff;
  border: none;
  padding: 18px 36px;
  font-size: 20px;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(55, 178, 77, 0.3);
}

footer {
  border-top: 1px solid #dee2e6;
  margin-top: 60px;
  background: #f8f9fa;
}