.driver-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 40px 80px;
}

.driver-header {
  position: relative;
  min-height: 500px;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../img/driver/inquiry-driver.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  overflow: hidden;
  padding: 50px;
  display: flex;
  align-items: center;
}

.header-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.header-content h1 {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 0;
  font-family: "Pretendard", sans-serif;
  flex: 1;
  min-width: 400px;
}

.header-content h1 strong {
  font-size: 3rem;
  display: block;
  margin-top: 10px;
  color: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  min-width: 250px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
}

.contact-value {
  font-size: 1.1rem;
  color: #fff;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
}

.header-bottom {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.requirements {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: nowrap;
  flex: 1;
}

.requirement-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.requirement-box h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-family: "Pretendard", sans-serif;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.requirement-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #7b4ae2, #5d28cc);
  border-radius: 2px;
}

.requirement-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirement-box li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
}

.requirement-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7b4ae2;
  font-size: 1.2rem;
}

.requirement-box li:last-child {
  margin-bottom: 0;
}

.label {
  font-size: 1.1rem;
  font-family: "Pretendard", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.apply-card {
  background: linear-gradient(135deg, #7b4ae2, #5d28cc);
  backdrop-filter: blur(8px);
  padding: 30px 25px;
  border-radius: 20px;
  min-width: 280px;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 40px rgba(123, 74, 226, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.apply-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.apply-card-content {
  position: relative;
  z-index: 2;
}

.apply-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-family: "Pretendard", sans-serif;
  color: #fff;
  font-weight: 700;
}

.apply-card p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-family: "Pretendard", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.header-apply-button {
  display: inline-block;
  background: white;
  color: #7b4ae2;
  padding: 14px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  font-family: "Pretendard", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.header-apply-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Franchise System Section */
.franchise-system-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 10px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  position: relative;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  font-family: "Pretendard", sans-serif;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.franchise-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(123, 74, 226, 0.1);
}

.franchise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(123, 74, 226, 0.15);
}

.franchise-number {
  position: absolute;
  top: -15px;
  left: 30px;
  background: linear-gradient(135deg, #7b4ae2, #5d28cc);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Pretendard", sans-serif;
  box-shadow: 0 4px 15px rgba(123, 74, 226, 0.3);
}

.franchise-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 25px;
  margin-top: 20px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

.franchise-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: -5px;
}

.franchise-content li {
  padding: 8px 0;
  font-size: 1.1rem;
  color: #555;
  font-family: "Pretendard", sans-serif;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.franchise-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7b4ae2;
  font-weight: 600;
}

.price-highlight {
  background: linear-gradient(135deg, #7b4ae2, #5d28cc);
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  text-align: center;
}

.price-highlight .price {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Pretendard", sans-serif;
  display: block;
}

.price-highlight .unit {
  font-size: 1rem;
  opacity: 0.9;
  font-family: "Pretendard", sans-serif;
  margin-top: 5px;
  display: block;
}

.market-price {
  font-size: 1rem;
  color: #666;
  font-family: "Pretendard", sans-serif;
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 30px 15px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card.highlight-card {
  border: 2px solid #7b4ae2;
  box-shadow: 0 15px 40px rgba(123, 74, 226, 0.15);
  transform: scale(1.02);
}

.benefit-card.highlight-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon img {
  height: 80px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: "Pretendard", sans-serif;
}

.benefit-card p {
  font-size: 1rem;
  color: #666;
  font-family: "Pretendard", sans-serif;
}

/* Apply Section */
.apply-section {
  padding: 100px 40px;
  text-align: center;
  position: relative;
}

.apply-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #7b4ae2, #5d28cc);
  border-radius: 2px;
}

.apply-content {
  max-width: 800px;
  margin: 0 auto;
}

.apply-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-family: "Pretendard", sans-serif;
  color: #333;
  font-weight: 700;
}

.apply-content p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  font-family: "Pretendard", sans-serif;
  color: #666;
  line-height: 1.6;
}

.apply-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.apply-button {
  padding: 18px 45px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Pretendard", sans-serif;
  position: relative;
  overflow: hidden;
}

.apply-button.primary {
  background: linear-gradient(135deg, #7b4ae2, #5d28cc);
  color: white;
  box-shadow: 0 10px 20px rgba(123, 74, 226, 0.2);
}

.apply-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(123, 74, 226, 0.3);
}

.apply-button.secondary {
  background: white;
  color: #333;
  border: 2px solid #e0e0e0;
}

.apply-button.secondary:hover {
  background: #f8f9fa;
  border-color: #7b4ae2;
  color: #7b4ae2;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .header-title-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .header-content h1 {
    min-width: auto;
  }

  .contact-info {
    width: 100%;
  }

  .header-bottom {
    flex-direction: column;
    gap: 25px;
  }

  .requirements {
    flex-wrap: wrap;
  }
  .requirement-box {
    min-width: 260px;
  }

  .apply-card {
    max-width: 100%;
    min-width: 100%;
  }

  .franchise-grid {
    padding: 0 20px;
    gap: 25px;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  .driver-container {
    padding: 4rem 20px 60px;
  }

  .driver-header {
    padding: 30px 20px;
    min-height: auto;
  }

  .header-title-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }

  .header-content h1 {
    font-size: 2rem;
    min-width: auto;
  }

  .header-content h1 strong {
    font-size: 2.5rem;
  }

  .contact-info {
    width: 100%;
    padding: 20px;
    min-width: auto;
  }

  .header-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .requirements {
    flex-direction: column;
    gap: 20px;
  }

  .requirement-box {
    min-width: 100%;
  }

  .apply-card {
    padding: 25px 20px;
    min-width: 100%;
  }

  .apply-card h3 {
    font-size: 1.4rem;
  }

  .apply-card p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .header-apply-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .label {
    font-size: 1rem;
  }

  .franchise-system-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .franchise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .franchise-card {
    padding: 30px 20px;
  }

  .franchise-card h3 {
    font-size: 1.3rem;
  }

  .franchise-content li {
    font-size: 1rem;
  }

  .price-highlight .price {
    font-size: 1.8rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }

  .benefit-card {
    padding: 30px 15px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon img {
    width: 30px;
    height: 30px;
  }

  .apply-section {
    padding: 60px 20px;
  }

  .apply-content h2 {
    font-size: 2.2rem;
  }

  .apply-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .apply-buttons {
    flex-direction: column;
  }

  .apply-button {
    width: 100%;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .franchise-card {
    padding: 20px 15px;
  }

  .franchise-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    left: 20px;
  }

  .franchise-card h3 {
    font-size: 1.2rem;
    margin-top: 15px;
  }

  .price-highlight {
    padding: 15px;
  }

  .price-highlight .price {
    font-size: 1.6rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* 자격증 안내 문구 스타일 */
.certificate-note {
  font-size: 12px;
  color: #666;
  margin: 0;
  padding-left: 20px;
}
