

/* About Hero Section */
.about-hero-section {
  padding: 40px 16px 40px;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 40px;
}

.about-title {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-image {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  max-width: 440px;
}

.about-text {
  flex: 2;
  max-width: 716px;
}

.about-intro {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #0F172A;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.about-description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #334155;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
  max-width: 600px;
}

.features-list li {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
  line-height: 1.5;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: #2F3DA2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.feature-cards {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 800px;
  width: 100%;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  width: 158px;
  height: 141px;
}

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.feature-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  margin: 0;
}

/* Application Section */
.application-section {
  padding: 80px 16px;
  background: #f8f9ff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.application-container {
  width: 500px;
  background: white;
  border-radius: 34px;
  padding: 40px;
  box-shadow: 0 44px 64px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0 44px 64px rgba(0, 0, 0, 0.1));
}

.application-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.application-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #2F3DA2;
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-group select {
  cursor: pointer;
}

.checkbox-group {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 16px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all 0.2s;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: white;
  border-color: #2F3DA2;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: #2F3DA2;
  font-size: 10px;
  font-weight: bold;
}

.privacy-notice {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 24px;
  text-align: center;
}

.button-group {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  width: 204px;
  height: 50px;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #2F3DA2;
  color: white;
}

.btn-primary:hover {
  background: #253285;
}

.btn-secondary {
  background: #F0F2FF;
  color: #2F3DA2;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-text {
    max-width: 100%;
  }
  
  .application-container {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 800px) {
  
  .about-hero-section {
    padding: 32px 16px 32px;
  }
  
  .about-title {
    font-size: 32px;
  }
  
  .about-intro {
    font-size: 20px;
  }
  
  .about-description {
    font-size: 16px;
  }
  
  .about-content {
    gap: 32px;
    align-items: center;
  }
  
  .feature-cards {
    grid-template-columns: 1fr;
  }
  
  .application-container {
    width: 90%;
    max-width: 500px;
    padding: 30px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 204px;
  }
}

@media (max-width: 480px) {
  
  .about-hero-section {
    padding: 24px 12px 24px;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .about-intro {
    font-size: 18px;
  }
  
  .about-description {
    font-size: 15px;
  }
  
  .about-content {
    gap: 24px;
  }
  
  .about-image img {
    max-width: 300px;
  }
  
  .features-list li {
    font-size: 16px;
  }
  
  .application-container {
    border-radius: 20px;
    padding: 20px;
  }
  
  .application-title {
    font-size: 20px;
  }
}
