/* About Page */
.about-section {
  background: white;
  padding: 5rem 2rem;
  width: 100%;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
  padding: 3rem;
  border-radius: 16px;
  margin-bottom: 4rem;
  border-left: 5px solid #0066cc;
}

.about-intro h2 {
  color: #0066cc;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-intro p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.mission-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mission-card h3 {
  color: #0066cc;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.timeline {
  position: relative;
  padding-left: 3rem;
  margin-top: 3rem;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #0066cc;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0066cc;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #0066cc;
}

.timeline-item h4 {
  color: #0066cc;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: #555;
  line-height: 1.7;
}

/* Partners Section */
.partners-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.partner-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: white;
  padding: 3rem;
  border-radius: 16px;
}

.partner-header {
  text-align: left;
}

.partner-header h3 {
  color: #1a1a1a;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.partner-header h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #0066cc;
  margin-top: 0.5rem;
}

.partner-header p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.partner-details {
  width: 100%;
}

.system-advantages {
  text-align: left;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.advantages-content {
  flex: 1;
}

.partner-logo {
  max-width: 250px;
  width: 100%;
  flex-shrink: 0;
}

.partner-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.system-advantages h4 {
  color: #0066cc;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-left: 1rem;
}

.system-advantages h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0066cc, #0052a3);
  border-radius: 2px;
}

.system-advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.system-advantages li {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.system-advantages .bullet {
  color: #0066cc;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .partner-content {
    padding: 2rem 1.5rem;
  }

  .partner-header h3 {
    font-size: 1.5rem;
  }

  .partner-header p {
    font-size: 1rem;
  }

  .system-advantages {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .advantages-content {
    text-align: left;
  }
  
  html[dir="rtl"] .advantages-content {
    text-align: right;
  }

  .partner-logo {
    max-width: 200px;
    margin: 0 auto;
  }

  .system-advantages {
    padding: 1.5rem;
  }

  .system-advantages h4 {
    font-size: 1.3rem;
  }

  .system-advantages li {
    font-size: 1rem;
  }
}

