/* ------------------ General Styles --------------------- */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0f100c;
  color: white;
  text-align: left;
}

/* ------------------ Phone Section Container ------------------ */
.container-phone {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  max-width: 1100px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #181a15;
}

/* Left Section */
.left-section {
  flex: 1;
  padding: 40px;
  height: auto;
}

.left-section h2 {
  color: white;
  font-size: 22px;
  line-height: 1.5em;
  font-weight: bold;
  text-align: left;
}

.steps {
  margin-top: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step-number {
  background-color: gray;
  color: white;
  font-weight: bold;
  font-size: 14px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  margin-right: 15px;
}

.step-content h4 {
  margin: 0;
  font-size: 16px;
  color: white;
  padding-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: white;
  max-width: 250px;
  padding-bottom: 10px;
}

/* ------------------ Right Section (Form) ------------------ */
.right-section {
  flex: 1;
  padding: 40px;
  text-align: left;
}

.right-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* ------------------ Form Styles ------------------ */
.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* --------------- Checkbox Group (Aligned Properly) --------------- */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-right: 5px;
}

/* --------------- Button Group (Aligned) --------------- */
.button-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 12px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
  width: 200px;
  text-align: center;
}

.btn.primary {
  background-color: #bff747;
  color: black;
}

.btn.primary:hover {
  background-color: white;
  color: black;
}

.btn.secondary {
  background-color: #bff747;
  color: black;
}

.btn.secondary:hover {
  background-color: white;
  color: black;
}

/* ---------------- Banner Section (Text + Mobile Image) ---------------- */
.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 85%;
  margin: 40px auto;
  padding: 40px;
  border-radius: 20px;
  background-color: #0f100c;
  color: white;
}

/* Content (Left Side) */
.banner .content {
  max-width: 50%;
}

.banner h1 {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.banner p {
  font-size: 18px;
}

.banner .highlight {
  font-weight: bold;
  color: #ffd700;
}

/* Call-to-Action Button */
.banner .call-btn {
  width: 200px;
  background-color: #bff747;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.banner .call-btn:hover {
  background: white;
  color: black;
}

/* Mobile Image (Right Side by Default) */
.banner .image {
  flex-shrink: 0;
  margin-left: 30px;
}

.banner .image img {
  max-width: 250px;
  height: 150px;
  margin-right: 30px;
}

/* ---------------- Responsive Fixes ---------------- */

/* Mobile Layout - Stack Image Below Text */
@media (max-width: 900px) {
  .banner {
      flex-direction: column; /* Stack text and image */
      text-align: center;
  }

  .banner .content {
      max-width: 100%;
  }

  .banner .image {
      margin: 20px 0 0 0; /* Add spacing above image */
  }

  .banner .image img {
      max-width: 180px;
  }
}

/* ------------------ Responsive Fixes for Contact & Form ------------------ */
@media (max-width: 900px) {
  .container-phone {
      flex-direction: column;
      align-items: center;
      padding: 30px;
      gap: 20px;
  }

  .left-section,
  .right-section {
      width: 100%;
      padding: 20px;
  }

  .step-content h4,
  .step-content p {
      max-width: 100%;
  }

  .button-group {
      flex-direction: column;
  }

  .btn {
      width: 100%;
  }
}

@media (max-width: 480px) {
  .left-section h2 {
      font-size: 18px;
  }

  .step-content h4 {
      font-size: 14px;
  }

  .step-content p {
      font-size: 12px;
  }

  .btn {
      font-size: 14px;
      padding: 10px;
  }
}
