.title-contactUs{
    font-size: 28px;
    margin-bottom: 10px;
}
.contact-heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}
.con-desc{
    width: 40%;
    font-size: 14px;
}
.contact-container {
  width: 100vw;
  height: auto;
  padding: 0% 8% 0%;
  background-color: white;
}

.contact-bg {
  background-color: #fff7f7;
  width: 100%;
  height: auto;
  border-radius: 10px;
  color: var(--text-color);
  padding: 20px;
  display: flex;
  gap: 20px;
}

.contact-details {
  background-color: #F53E32;
  padding: 20px;
  width: 70%;
  height: 360px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.desc-contact{
    line-height: 1.2rem;
    font-size: 12px;
    font-weight: 400;
    color: #fff7f7e7;
}

.contact-form {
  width: 100%;
}
.call-icon{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.call-icon p{
   font-size: 13px;
}

.form-inputs {
  width: 100%;
  display: flex;
  flex-wrap: wrap; /* Added for smaller screens */
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.form-input {
  width: 48%; /* Adjusted for smaller screens */
}

.form-input label {
  display: block;
  margin-bottom: 5px;
}

.form-input input {
  width: 100%;
  padding: 8px 0px;
  border-bottom: 1px solid black;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background-color: transparent;
  outline: none;
  /* padding: 10px; */
}

.textarea-box  textarea{
  width: 100%;
  height: 130px;
  border-bottom: 1px solid black;
  background-color: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  outline: none;
  /* padding: 10px; */
}
.send-btn{
    width: 200px;
    height: 45px;
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
}
.send-btn:hover{
    background-color: var(--secondary-color);
}
.send-btn a{
    text-decoration: none;
    color: white;
}

.title-contact{
    font-size: 16px;
}
@media only screen and (max-width: 600px) {
  .contact-bg {
    flex-direction: column;
  }

  .contact-details {
    width: 100%;
    transition: all 0.1s ease-in-out;
  }

  .form-input {
    width: 100%;
  }
  .con-desc{
    width: 100%;

}
}
.accordion {
  display: flex;
  flex-direction: column;
  font-family: "Sora", sans-serif;
  /* max-width: 991px; */
  width: 50%;
  min-width: 320px;
  margin: 50px auto;
  padding: 0 50px;
}
.accordion h1 {
  font-size: 32px;
  text-align: center;
}
.accordion-item {
  margin-top: 16px;
  border: 1px solid #fcfcfc;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
  position: relative;
  margin: 0;
  display: flex;
  width: 100%;
  font-size: 15px;
  cursor: pointer;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 14px 20px;
  box-sizing: border-box;
  align-items: center;
}
.accordion-item .accordion-item-desc {
  display: none;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: #444;
  border-top: 1px dashed #ddd;
  padding: 10px 20px 20px;
  box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
  display: block;
}
.accordion-item
  input[type="checkbox"]:checked
  ~ .accordion-item-title
  .icon:after {
  content: "-";
  font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
  content: "+";
  font-size: 20px;
}
.accordion-item:first-child {
  margin-top: 0;
}
.accordion-item .icon {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .accordion {
      padding: 0 16px;
  }
  .accordion h1 {
      font-size: 22px;
  }
}

