@charset "UTF-8";
/* CSS Document */

.cta-section {
  background-color: #FA6400;
  color: #000;
  text-align: center;
  padding: 60px 20px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-section p {
  color: #1a1a1a;
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature img {
  width: 38.348px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 10px;
}

.feature span {
  font-size: 1rem;
  font-weight: 500;
}

.divider {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.4);
}

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

.btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Get Started Today button */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #23B5B1;
  color: #fff;
  border-color: #f26a21;
}

/* Say Hello button */
.btn-solid {
  background-color: #23B5B1;
  color: #fff;
  border: 2px solid #fff;
}

.btn-solid:hover {
  background-color: transparent;
  border: 2px solid #fff;
  color: #000;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.6rem;
  }
  .divider {
    display: none;
  }
}
