/* Services Section */
.services-container {
  padding: 2rem 2rem 3rem;
}

.services-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.services-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0B2545;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-img {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0;
}

.service-img i {
  font-size: 3.5rem;
}

.service-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-content p {
  color: #4B5563;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #374151;
}

.service-features i {
  color: #10B981;
  margin-right: 0.5rem;
}

.service-btn {
  display: inline-block;
  background-color: #F97316;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

.service-btn:hover {
  background-color: #EA580C;
  transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
  background-color: #F3F4F6;
  padding: 2rem 2rem;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-container h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0B2545;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  font-style: italic;
  color: #4B5563;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.author-info h4 {
  font-weight: 600;
  margin: 0;
}

.author-info p {
  color: #6B7280;
  margin: 0;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, #1E3A8A, #3B82F6);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

.cta-primary {
  background-color: #F97316;
  color: white;
}

.cta-primary:hover {
  background-color: #EA580C;
}

.cta-secondary {
  background-color: white;
  color: #1E3A8A;
  border: 2px solid transparent;
}

.cta-secondary:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .services-container, .testimonials, .cta-section, .footer {
    padding: 3rem 1rem;
  }

  .services-intro h2, .testimonials-container h2 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }
}