/* About page specific styles */
.about-page {
  background: transparent;
  min-height: 100vh;
}


.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-section {
  min-height: 520px;
  background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%), 
              url('/media/icons/start.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  margin: 20px 0;
}

.hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 800px;
}

.hero-subtitle {
  color: #e2e8f0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-button {
  background: #006AB4;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 106, 180, 0.4);
}

.hero-button:hover {
  background: #0056a3;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 106, 180, 0.6);
}

.section {
  padding: 64px 0;
}

.section-title {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.feature-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  background: rgba(0, 106, 180, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 24px;
  color: #006AB4;
}

.feature-title {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.feature-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.benefits-section {
  background: #f1f5f9;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-content {
  padding: 8px;
}

.benefit-title {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.benefit-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  padding: 64px 0;
}

.cta-title {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: #006AB4;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 106, 180, 0.4);
}

.cta-button:hover {
  background: #0056a3;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 106, 180, 0.6);
}

/* Service Information Section Styles */
.service-info-section {
  padding: 64px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-info-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-info-title {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 48px;
}

.info-block {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.info-block:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.info-block-title {
  color: #1e293b;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #006AB4;
}

.info-block-content {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

.info-block-content p {
  margin-bottom: 16px;
}

.info-block-content p:last-child {
  margin-bottom: 0;
}

/* Instruction Sections */
.instruction-section {
  margin-bottom: 40px;
}

.instruction-section:last-child {
  margin-bottom: 0;
}

.instruction-title {
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid #006AB4;
}

.instruction-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.instruction-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.instruction-step:hover {
  background: #f1f5f9;
  border-color: #006AB4;
}

.step-number {
  background: #006AB4;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

.step-content strong {
  color: #1e293b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 32px 16px;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .service-info-title {
    font-size: 2rem;
  }
  
  .info-block {
    padding: 24px;
    margin-bottom: 24px;
  }
  
  .info-block-title {
    font-size: 1.5rem;
  }
  
  .instruction-title {
    font-size: 1.25rem;
  }
  
  .instruction-step {
    padding: 16px;
    gap: 12px;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .service-info-container {
    padding: 0 16px;
  }
}
