.ai-overview-section {
  padding: 60px 16px;
  background-color: #ffffff;
}

.ai-overview-container {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.overview-text {
  flex: 2;
}

.overview-title {
  font-weight: 600;
  font-size: 22px;
  color: #ff5a19;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.overview-line {
  width: 100%;
  height: 3px;
  background-color: #ff5a19;
  margin-bottom: 16px;
}

.overview-description {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
}

.overview-form {
  flex: 1;

  border: 1px solid #f0f1f4;

  box-sizing: border-box;
}

.overview-form {
  flex: 1;
  border-radius: 8px;

  overflow: hidden;
  box-sizing: border-box;
}

.overview-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ffffff;
}

.form-header {
  background: #ff5a19;
  color: #fff;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 18px;
}

.form-header span {
  font-weight: 700;
}

.form-body {
  padding: 20px;
}

.form-subtitle {
  font-size: 15px;

  margin-bottom: 18px;
}

.overview-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.overview-form label {
  font-size: 12px;
  font-weight: 600;
  color: #1e1e1e;
}

.overview-form input,
.overview-form select,
.overview-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}

.overview-form textarea {
  resize: vertical;
  min-height: 80px;
}

.overview-form button {
  margin-top: 8px;
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.overview-form button:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .ai-overview-container {
    flex-direction: column;
    gap: 20px;
  }

  .overview-text,
  .overview-form {
    flex: unset;
    width: 100%;
  }
}

.ai-automation-section {
  padding: 40px 16px;
  padding-top: 140px;
  background-color: #f0f1f4;
}

.ai-automation-container {
  display: flex;
  align-items: flex-start;
  gap: 24px;

  max-width: 1200px;
  margin: 0 auto;
}

.ai-text {
  flex: 2;
}

.ai-title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 24px;
  color: #000000;
}

.ai-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 0;
}

.ai-image {
  flex: 1;
}

.ai-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.ai-list li {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 8px;
}

.ai-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

@media (max-width: 768px) {
  .ai-automation-section {
    padding-top: 100px;
  }

  .ai-automation-container {
    flex-direction: column;
    gap: 24px;
  }

  .ai-text,
  .ai-image {
    flex: unset;
    width: 100%;
  }
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 800px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.popup-close {
  position: absolute !important;
  top: 12px;
  right: 15px;
  background: none !important;
  border: none !important;
  font-size: 22px !important;
  cursor: pointer;
  color: #333 !important;
  line-height: 1 !important;
}

.popup-close:hover {
  opacity: 0.6;
}

.popup img {
  width: 240px;
  margin-bottom: 20px;
  
}

.popup h3 {
  font-size: 30px;
  line-height: 100%;
  margin-bottom: 12px;
}

.popup p {
  font-size: 16px;

}

@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
