.services-hero {
  background: #f7f7f7;
  padding: 60px 20px;
}

.services-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-intro {
  text-align: center;
  margin-bottom: 50px;
}

.services-intro h1 {
  color: var(--accent);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.services-intro p {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.services-modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.service-mode {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-mode:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-mode img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  
}

.service-mode h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

.service-mode p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.pricing {
  padding: 60px 20px;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing h2 {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.pricing-intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.pricing-card h3 {
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.pricing-card p {
  font-size: 1rem;
  color: #555;
  margin: 5px 0;
}

.pricing-card strong {
  font-weight: 700;
  color: var(--accent);
}
#fees {
  scroll-margin-top: 4rem;
}

.pricing {
  padding: 4rem 1rem;
  font-family: sans-serif;
  color: var(--fg);
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-header {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.pricing-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.pricing-group {
  flex: 1 1 350px;
  background: var(--bg);
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.group-title {
  font-size: 1.5rem;
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 0.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.fees-dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem 0.5rem;
  margin: 0;
  padding: 0;
}

.fees-dl dt {
  font-weight: 600;
  font-size: 1rem;
  margin-right: 1rem;
}

.fees-dl dd {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--fg);
  text-align: right;
  margin: 0;
}

.pricing-concessions {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding: 1.5rem;
  background-color: #e6f0f0;
  border-left: 5px solid var(--accent);
  border-radius: 4px;
}

.pricing-concessions .group-title {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 0.75rem;
}

footer{
  margin-top: 0 !important;
}

.cta{
    margin-top: 1rem;
}