/* Global Styles */
:root {
  --primary-color: #2ecc71;
  --primary-dark: #27ae60;
  --secondary-color: #2c3e50;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-muted: #555;
  --border-color: #dee2e6;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: .75rem 1.5rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

/* Layout */
.main-content {
  min-height: calc(100vh - 160px);
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Footer Styles */
.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Home Page Styles */
.hero-section {
  padding: 6rem 0;
  background-color: var(--light-color);
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-section {
  padding: 5rem 0;
  background-color: white;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.about-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.feature-list li i {
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.partners-section {
  padding: 5rem 0;
  background-color: white;
}

.partner-logo {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.testimonials-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  position: absolute;
}

.testimonial-content p::before {
  left: -5px;
  top: -10px;
}

.testimonial-content p::after {
  right: -5px;
  bottom: -20px;
}

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

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.cta-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

.cta-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

/* About Page Styles */
.about-hero-section {
  padding: 6rem 0 4rem;
  background-color: var(--light-color);
  position: relative;
  text-align: center;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.company-overview-section {
  padding: 5rem 0;
  background-color: white;
}

.about-image-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.section-content {
  padding: 2rem;
}

.section-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.mission-vision-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.mission-vision-card {
  background-color: white;
  border-radius: 10px;
  padding: 3rem 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.card-icon i {
  color: var(--primary-color);
  font-size: 2rem;
}

.mission-vision-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.core-values-section {
  padding: 5rem 0;
  background-color: white;
}

.value-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.team-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.team-member-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image-container {
  height: 250px;
  overflow: hidden;
}

.member-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-image-placeholder i {
  font-size: 5rem;
  color: #adb5bd;
}

.member-info {
  padding: 2rem;
  text-align: center;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.member-position {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.member-bio {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: white;
}

.why-choose-section {
  padding: 5rem 0;
  background-color: white;
}

.feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Services Page Styles */
.services-hero-section {
  padding: 6rem 0 4rem;
  background-color: var(--light-color);
  position: relative;
  text-align: center;
}

.services-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.main-services-section {
  padding: 5rem 0;
  background-color: white;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.service-link i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-detail-section {
  padding: 5rem 0;
}

.service-detail-section.bg-light {
  background-color: var(--light-color);
}

.service-detail-content {
  padding: 2rem;
}

.service-detail-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-icon img {
  max-width: 100%;
  max-height: 100%;
}

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

.service-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: var(--text-muted);
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.service-detail-image-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 350px;
}

.service-detail-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-image-placeholder i {
  font-size: 5rem;
  color: #adb5bd;
}

.approach-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.approach-step {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.approach-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.approach-step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-us-container h2, 
.contact-us-container h3, 
.contact-us-container h4, 
.contact-us-container h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-us-container p.text-muted {
  line-height: 1.7;
  font-size: 1rem;
  color: var(--text-muted) !important;
}

.contact-us-container .form-label {
  font-weight: 500;
  color: #333;
}

.contact-us-container .form-control,
.contact-us-container .form-select {
  border-radius: 5px;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-us-container .form-control:focus,
.contact-us-container .form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.contact-us-container .form-check-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-us-container .required {
  color: red;
  margin-left: 2px;
}

.contact-us-container .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-us-container .btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-us-container .social-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s ease-in-out;
}

.contact-us-container .social-links a:hover {
  color: var(--primary-dark);
}

.contact-info-section p {
  margin-bottom: 1rem;
}

.contact-info-section strong {
  color: #333;
}

.contact-info-section a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-section a:hover {
  text-decoration: underline;
}

.map-placeholder {
  height: 300px;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-style: italic;
  border-radius: 8px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-info-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.contact-info-box {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact-info-box h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info-box p {
  margin-bottom: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.contact-info-box p i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  margin-right: 10px;
  font-size: 1.1rem;
}

.alternative-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-button {
  flex-grow: 1;
  min-width: 150px;
  padding: 10px 15px;
  font-size: 0.95rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.action-button i {
  margin-right: 5px;
}

.btn-outline-primary.action-button {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary.action-button:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-outline-secondary.action-button {
  border-color: #6c757d;
  color: #6c757d;
}

.btn-outline-secondary.action-button:hover {
  background-color: #6c757d;
  color: white;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.google-map {
  display: block;
}

.contact-form-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-us-container .row {
  align-items: flex-start;
}

/* FAQ Section Styles */
.faq-section {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 8px;
  margin-top: 50px;
}

.faq-section .section-title {
  color: var(--secondary-color);
}

.accordion-item {
  background-color: #fff;
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-item:first-of-type {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.accordion-item:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-bottom: 0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 500;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: #e7f8ee;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-body {
  padding: 1rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 4rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-image-container {
    margin-top: 3rem;
  }
  
  .about-hero-section,
  .services-hero-section {
    padding: 4rem 0 3rem;
  }
  
  .about-hero-title,
  .services-hero-title {
    font-size: 2.8rem;
  }
  
  .about-image-container {
    margin-bottom: 2rem;
  }
  
  .service-detail-image-container {
    margin-top: 2rem;
    height: 250px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .order-lg-1 {
    order: 2;
  }
  
  .order-lg-2 {
    order: 1;
  }
  
  .contact-info-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-hero-title,
  .services-hero-title {
    font-size: 2.2rem;
  }
  
  .about-hero-subtitle,
  .services-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .mission-vision-card {
    margin-bottom: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}
