/* =====================
   MAIN CONTENT
===================== */
.content-section {
  padding: 15px 15px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Century Gothic', sans-serif;
  text-align: center;
}

/* Reduce space below the banner */
#welcome-section {
  margin-top: 20px;
}

.content-section h2 {
  color: #b2975a;
  font-size: 2.0rem;
  margin-bottom: 15px;
}

/* Make the two headings sit closer together */
.welcome-section h2 {
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

.welcome-section h2 + h2 {
  margin-top: 5px;
}

.content-section p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ==== Services Grid ==== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop + tablet = 3 columns */
  gap: 20px;
  margin-top: 15px;
}

/* Service cards */
.service-card {
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Round images */
.service-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.service-card-link {
  text-decoration: none; /* remove underline */
  color: inherit;        /* keep text color */
  display: block;        /* make the whole card clickable */
}

/* Text inside cards */
.service-card h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 5px;
}

/* Testimonials */
.testimonials-section .testimonial {
  background-color: #222;
  padding: 20px;
  border-radius: 6px;
  margin: 15px auto;
  max-width: 700px;
  font-style: italic;
  color: #fff;
}

/* Call-to-Action Button */
.cta-section .main-cta {
  display: inline-block;
  background-color: #b2975a;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-section .main-cta:hover {
  background-color: #ffcc66;
  transform: scale(1.05);
}

.section-subtitle {
  position: relative;
  text-align: center;
  margin-top: 20px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
}

/* Faded line underneath */
.section-subtitle::after {
  content: "";
  display: block;
  width: 450px;
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(to right, transparent, #996600, transparent);
  opacity: 0.7;
  border-radius: 2px;
}

/* ============================
   BUYING OPTIONS SECTION
============================= */
.buying-options-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px auto;           /* center section horizontally */
  max-width: 1200px;           /* match main content width */
  flex-wrap: wrap;
  justify-content: center;     /* center content on large screens */
}

.buying-options-section .buying-image {
  flex: 1 1 400px;
  max-width: 500px;
}

/* Round the buying options image to match service cards */
.buying-options-section .buying-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.buying-options-section .buying-text {
  flex: 1 1 400px;
  text-align: left;
  font-family: 'Century Gothic', sans-serif;
  color: #fff;
}

/* Buying options text */
.buying-options-section .buying-text p {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #fff;
}

.buying-options-section .buying-text p:first-child {
  color: #b2975a; /* gold accent for first line */
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.2;
}

.buying-options-section .buying-text p:not(:first-child) {
  color: #1a1100;
  font-size: 1.25rem;
}

/* ============================
   RESPONSIVE SETTINGS
============================= */
@media (max-width: 900px) {
  .buying-options-section {
    flex-direction: column;
    text-align: center;
  }

  .buying-options-section .buying-text {
    text-align: center;
  }
}


/* Responsive tweaks for services grid */

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr); /* mobile = 1 column */
    gap: 15px;
  }

  .service-card {
    padding: 15px;
  }

  .service-card img {
    width: 90px;
    height: 90px;
  }
  /* Content section styling */
.content-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

/* Section heading */
.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Main headline */
.main-headline {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #111;
}

/* Subheading */
.subheading {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.6rem;
  }

  .main-headline {
    font-size: 1.8rem;
  }

  .subheading {
    font-size: 1rem;
  }

  .notice-box {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
}

}


