/* ============================================
   About Page Specific Styles
   ============================================ */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0 80px;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #155757;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 24px;
  color: #4db8b8;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.about-hero-description {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.about-hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Our Story Section */
.our-story {
  padding: 80px 0;
  background: #ffffff;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-title {
  font-size: 42px;
  font-weight: 700;
  color: #155757;
  margin-bottom: 25px;
  font-family: Georgia, serif;
}

.story-text {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-logos {
  margin-top: 30px;
}

.certification-logos {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Our Approach Section */
.our-approach {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f9 0%, #e6f4f4 100%);
}

.approach-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.approach-title {
  font-size: 42px;
  font-weight: 700;
  color: #155757;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.approach-description {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.approach-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.approach-image-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.approach-image-wrapper.pink-blob {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.approach-image-wrapper.orange-blob {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.approach-image-wrapper.beige-blob {
  background: linear-gradient(135deg, #f5f5dc 0%, #e8e8c8 100%);
}

.approach-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #155757;
  margin-bottom: 15px;
  font-family: Georgia, serif;
}

.approach-card-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: #ffffff;
}

.why-choose-title {
  font-size: 42px;
  font-weight: 700;
  color: #155757;
  text-align: center;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.why-choose-subtitle {
  font-size: 18px;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.why-card {
  background: linear-gradient(135deg, #f0f9f9 0%, #e6f4f4 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #155757;
  margin-bottom: 15px;
  font-family: Georgia, serif;
}

.why-card-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Meet Team Section */
.meet-team {
  padding: 80px 0;
  background: linear-gradient(135deg, #e6f4f4 0%, #d1e9e9 100%);
}

.team-title {
  font-size: 42px;
  font-weight: 700;
  color: #155757;
  text-align: center;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.team-subtitle {
  font-size: 18px;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

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

.team-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-card-image {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(21, 87, 87, 0.95), transparent);
  padding: 30px 20px 20px;
}

.team-member-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  font-family: Georgia, serif;
}

.team-member-role {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* What We Offer Section */
.what-we-offer {
  padding: 80px 0;
  background: #ffffff;
}

.offer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offer-title {
  font-size: 42px;
  font-weight: 700;
  color: #155757;
  margin-bottom: 25px;
  font-family: Georgia, serif;
}

.offer-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.offer-check {
  flex-shrink: 0;
}

.offer-text-item {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

.offer-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Success Preview Section */
.success-preview {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 100%);
}

.success-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.clients-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-title {
  font-size: 42px;
  font-weight: 700;
  color: #155757;
  margin-bottom: 25px;
  font-family: Georgia, serif;
}

.success-text {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-success {
  display: inline-block;
  padding: 18px 40px;
  background-color: #e67e22;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-success:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
}

/* About Possibilities Section */
.about-possibilities {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f9 0%, #e6f4f4 100%);
}

.possibilities-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.possibilities-title-about {
  font-size: 42px;
  font-weight: 700;
  color: #155757;
  margin-bottom: 25px;
  font-family: Georgia, serif;
  line-height: 1.2;
}

.possibilities-text-about {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-possibilities {
  display: inline-block;
  padding: 18px 40px;
  background-color: #e67e22;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-possibilities:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
}

.possibilities-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Active Navigation Link */
.nav-link.active {
  color: #e67e22;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-title {
    font-size: 38px;
  }

  .about-hero-subtitle {
    font-size: 20px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-title {
    font-size: 36px;
  }

  .approach-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .approach-title {
    font-size: 36px;
  }

  .why-choose-title {
    font-size: 36px;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-title {
    font-size: 36px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .offer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-title {
    font-size: 36px;
  }

  .success-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .success-title {
    font-size: 36px;
  }

  .possibilities-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .possibilities-title-about {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0 40px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-subtitle {
    font-size: 18px;
  }

  .about-hero-description {
    font-size: 16px;
  }

  .our-story,
  .our-approach,
  .why-choose,
  .meet-team,
  .what-we-offer,
  .success-preview,
  .about-possibilities {
    padding: 60px 0;
  }

  .story-title,
  .approach-title,
  .why-choose-title,
  .team-title,
  .offer-title,
  .success-title,
  .possibilities-title-about {
    font-size: 28px;
  }

  .approach-description,
  .why-choose-subtitle,
  .team-subtitle {
    font-size: 16px;
  }

  .approach-image-wrapper {
    height: 200px;
  }

  .approach-card {
    padding: 25px;
  }

  .why-card {
    padding: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card-image {
    height: 300px;
  }

  .offer-text,
  .story-text,
  .success-text,
  .possibilities-text-about {
    font-size: 16px;
  }

  .btn-success,
  .btn-possibilities {
    padding: 16px 35px;
    font-size: 16px;
  }
}
