/* Enable smooth scrolling */
html {
  scroll-behavior: smooth;
}
/* Minimal Apple-inspired styling */
body {
  background-color: #f8f8f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: #333;
}
.hero {
  background-color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.5rem;
  color: #666;
}
.service-section,
.info-section,
.testimonial-section,
.insights-section,
.investor-detail-section {
  padding: 60px 0;
}
.service-card,
.info-card {
  transition: transform 0.3s;
}
.service-card:hover,
.info-card:hover {
  transform: translateY(-10px);
}
.service-icon,
.info-icon {
  font-size: 3rem;
  color: #2d6a4f;
  margin-bottom: 20px;
}
.service-title,
.info-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.service-description,
.info-description {
  font-size: 1rem;
  color: #777;
}
.testimonial-card {
  background-color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #555;
  flex-grow: 1;
}
.testimonial-author {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 15px;
  color: #333;
}
/* Ensure testimonial cards have the same height */
.testimonial-col {
  display: flex;
}
/* New Insights Section styling */
.insight-card {
  transition: transform 0.3s;
  border: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.insight-card:hover {
  transform: translateY(-10px);
}
.insight-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.insight-body {
  padding: 20px;
}
.insight-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.insight-text {
  font-size: 1rem;
  color: #666;
}
/* Investor Detail Sections styling */
.investor-detail {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 30px;
}
.investor-detail h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
.investor-detail ul {
  list-style: none;
  padding: 0;
}
.investor-detail li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}
.investor-detail li i {
  color: #2d6a4f;
  margin-right: 10px;
}

/* ===== New Forest Parcel Explorer (Map Section) Styles ===== */
.map-section {
  padding: 60px 0;
  background-color: #fff;
}
.map-section h2 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.map-container {
  position: relative;
  background-image: url("/images/World_map_blank_without_borders.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  width: 100%;
  max-width: 1000px;
  /* Remove fixed height and use padding-top to maintain aspect ratio (adjust if needed) */
  padding-top: 50%;
  margin: 0 auto 40px auto;
  border-radius: 12px;
}
.map-pin {
  position: absolute;
  background-color: #2d6a4f;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.map-pin:hover {
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* Updated info card styling */
#parcelDetails {
  background-color: #fff;
  padding: 24px;
  width: 100%;
  margin-top: 20px; /* Extra spacing between map and info card */
  border-radius: 12px;
  border: 1px solid #e5e5ea;
}
#parcelDetails h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
#parcelDetails p {
  margin: 0.3rem 0;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .map-container {
    padding-top: 50%;
  }
  #parcelDetails {
    padding: 16px;
  }
}
