.corporate-content {
  padding: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.stat-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--primary-light);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-top: 3px solid var(--primary);
}

.stat-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1;
}

.section-title {
  text-align: center;
  color: var(--primary-dark);
  font-size: 32px;
  margin: 60px 0 40px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-light);
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 80px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 80px;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.timeline-year {
  position: absolute;
  top: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.timeline-item:nth-child(odd) .timeline-year {
  right: -40px;
}

.timeline-item:nth-child(even) .timeline-year {
  left: -40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid var(--primary-light);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-bottom: 3px solid var(--primary);
}

.value-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 25px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.leader-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.leader-image {
  height: 280px;
  background: linear-gradient(45deg, #e6d3bf, #d4b99c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 100px;
}

.leader-info {
  padding: 25px;
  text-align: center;
}

.leader-name {
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.leader-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.global-presence {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 50px 0;
}

.country-card {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 3px solid var(--primary-light);
}

.country-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  border-left: 3px solid var(--primary);
}

.country-flag {
  font-size: 48px;
  margin-bottom: 15px;
}

.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 40px;
  border-radius: var(--border-radius);
  color: white;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.footer {
  text-align: center;
  padding: 30px;
  color: var(--gray);
  font-size: 15px;
  border-top: 1px solid var(--light-gray);
  margin-top: 40px;
}

@media (max-width: 768px) {
  .card-header {
    padding: 40px 20px;
  }

  .corporate-content {
    padding: 30px 20px;
  }

  .title {
    font-size: 32px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    left: 0;
    right: auto;
  }
  .timeline-content {
    margin-left: 15px;
    min-width: 250px;
  }
}

@media (max-width: 480px) {

  .stat-card,
  .value-card,
  .leader-card,
  .contact-card {
    flex: 1 1 100%;
  }
}