.about-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Content Wrapper - updated with industry standard max-width */
.content-wrapper {
  max-width: 1200px; /* Industry standard */
  margin: 20px auto; /* Center the container */
  background-color: white;
  border-radius: 25px;
  padding: 10px 40px 40px 40px;
  box-sizing: border-box;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: calc(100% - 40px); /* Maintain side margins on smaller screens */
}

/* About Hero Section - full width background with centered content */
.about-hero-section {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.about-hero-content {
  max-width: 1200px; /* Match container width */
  padding: 20px;
  z-index: 2;
  width: calc(100% - 40px); /* Consistent with content wrapper */
  margin: 0 auto;
}

.about-hero-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.about-hero-title img {
  height: 70px;
  width: 70px;
  margin: 0 20px;
}

.about-hero-title h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
}

.about-hero-content p {
  font-size: 1.5rem;
  color: white;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

/* Section headers */
.mission-header {
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2,
.mission-header h2 {
  font-size: 2.2rem;
  color: #222;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Mission Section */
.mission-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.mission-content.reverse {
  flex-direction: row-reverse;
}

.mission-text {
  flex: 1.5;
  min-width: 300px;
}

.mission-text h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.mission-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.mission-image {
  flex: 1.5;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* Process Steps */
.process-section {
  background-color: #f8f8f8;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background-color: white;
  border-radius: 16px;
  padding: 30px 30px 0 30px;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  position: relative;
  transition: transform 0.3s ease;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background-color: #0066cc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.step-icon {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-icon svg {
  width: 50px;
  height: 50px;
  color: #0066cc;
}

.step-card h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  color: #222;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

/* Services Statistics Section */
.services-stats {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 16px;
}

.services-stats h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.4;
}

.services-stats .btn-primary {
  margin-top: 10px;
}

/* Values Section */
.values-section {
  background-color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background-color: #f8f8f8;
  border-radius: 25px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-icon svg {
  width: 50px;
  height: 50px;
  color: #0066cc;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Image Gallery Section */
.gallery-section {
  background-color: white;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 500px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Vision Section */
.vision-section {
  background-color: #f8f8f8;
  margin-bottom: 20px;
}

/* About CTA Section - full width background with centered content */
.about-cta-section {
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  margin: 0 auto;
}

.about-cta-section .cta-content {
  max-width: 1200px; /* Match container width */
  margin: 0 auto;
}

.about-cta-section .cta-content h2 {
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
}

.about-cta-section .cta-content p {
  font-size: 1.2rem;
  color: white;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-size: 1rem;
  background-color: #0066cc;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #004d99;
}

/* Responsive Adjustments */
@media (max-width: 1240px) {
  .content-wrapper {
    margin: 20px;
    width: calc(100% - 40px);
  }

  .about-hero-content {
    width: calc(100% - 40px);
  }
}

@media (max-width: 992px) {
  .about-hero-content h1 {
    font-size: 2.8rem;
  }

  .content-wrapper {
    padding: 30px;
  }

  .section-header h2,
  .mission-header h2 {
    font-size: 1.8rem;
  }

  .mission-text h3 {
    font-size: 1.5rem;
  }

  .about-hero-content,
  .about-cta-section .cta-content {
    max-width: 800px;
  }

  /* Logo section - image first on tablets and below */
  .logo-meaning-section .mission-content {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    height: 300px;
  }

  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-hero-content p {
    font-size: 1.1rem;
  }

  .mission-content,
  .mission-content.reverse {
    flex-direction: column;
  }

  /* Logo section - image first on mobile */
  .logo-meaning-section .mission-content {
    flex-direction: column-reverse;
  }

  .mission-image {
    margin: 0 auto;
  }

  .step-card {
    max-width: 100%;
  }

  .about-cta-section .cta-content h2 {
    font-size: 2rem;
  }

  .values-grid,
  .image-gallery {
    grid-template-columns: 1fr;
  }

  .content-wrapper {
    padding: 20px;
    margin: 15px;
    width: calc(100% - 30px);
  }

  .about-hero-content,
  .about-cta-section .cta-content {
    max-width: 100%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 1.8rem;
  }

  .about-hero-content p {
    font-size: 1rem;
  }

  .content-wrapper {
    padding: 20px;
  }

  .btn-primary {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .step-card {
    padding: 20px;
  }

  .gallery-image {
    height: 200px;
  }
}

/* =========================================
   PRICING SECTION
   ========================================= */

.pricing-section {
  padding: 0;
  margin: 0;
}

.pricing-container {
  max-width: 1200px; /* Industry standard */
  margin: 20px auto; /* Center the container */
  background-color: white;
  border-radius: 25px;
  padding: 10px 40px 40px 40px;
  box-sizing: border-box;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: calc(100% - 40px); /* Maintain side margins on smaller screens */
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 16px;
  font-weight: 700;
}

.pricing-header p {
  font-size: 1.125rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-user-type {
  margin-bottom: 50px;
}

.pricing-user-type h3 {
  text-align: center;
  font-size: 1.875rem;
  color: #2d3748;
  margin-bottom: 30px;
  font-weight: 600;
}

/* =========================================
   PRICING PLANS - INDEPENDENT STYLES
   ========================================= */

.pricing-plans {
  display: grid;
  gap: 30px;
  margin-top: 30px;
  justify-items: center;
}

.pricing-plans-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 30px auto 0;
}

.pricing-plans-three {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-plan-card {
  background: #e9e9e9;
  border-radius: 16px;
  padding: 30px;
  border: 2px solid #e9ecef;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 350px;
  height: 450px;
  box-shadow: none;
  cursor: default;
}

.pricing-plan-card:hover {
  background: #e9e9e9;
  border-color: #e9ecef;
  transform: none;
  box-shadow: none;
}

.pricing-plan-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8f9fa;
}

.pricing-plan-header h3 {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.pricing-price {
  font-size: 1.2rem;
  color: #222;
  font-weight: 800;
  margin-bottom: 5px;
}

.pricing-period {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.pricing-plan-features {
  flex-grow: 1;
  margin-bottom: 25px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: #495057;
  font-size: 1rem;
}

.pricing-feature-check {
  color: #28a745;
  margin-right: 12px;
  font-weight: bold;
  font-size: 16px;
}

/* Equal size cards regardless of content */
.pricing-plans-two .pricing-plan-card,
.pricing-plans-three .pricing-plan-card {
  width: 350px;
  height: 450px;
  display: flex;
  flex-direction: column;
}

/* Responsive breakpoints for pricing plans */
@media (max-width: 1200px) {
  .pricing-plans-three {
    grid-template-columns: 1fr;
  }

  .pricing-plans-two {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .pricing-plan-card {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 400px;
  }

  .pricing-plans-two .pricing-plan-card,
  .pricing-plans-three .pricing-plan-card {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 400px;
  }
}

@media (max-width: 1200px) {
  .pricing-container {
    margin: 20px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 992px) {
  .pricing-container {
    padding: 30px;
  }

  .pricing-header h2 {
    font-size: 1.8rem;
  }

  .pricing-user-type h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-container {
    padding: 20px;
    margin: 15px;
    width: calc(100% - 30px);
  }

  .pricing-header h2 {
    font-size: 2rem;
  }

  .pricing-user-type h3 {
    font-size: 1.5rem;
  }

  .pricing-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .pricing-container {
    padding: 20px;
  }
}
