
.contact-div {
    background-color: #f0f0f0;
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
}

.container-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.container-contact input {
    width: 100%;
    padding: 5px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.container-contact textarea {
    width: 100%;
    padding: 5px;
    height: 100px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.container-contact button {
    background-color: #1788DE;
    color: white;
    padding: 10px 20px;
    align-self: start;
    border: none;
    border-radius: 4px;
    cursor: pointer; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
}

.container-contact button:hover {
    background-color: #0A4B8C;
    color: white;
}

.phone-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
}

.container-phone {
    display: flex;
    background: rgba(26, 61, 14, 0.635);
    flex-direction: column;
    align-items: left;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
}
.container-phone-heading {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.container-phone-text {
    color: white;
    font-size: 15px;
    font-weight: semi-bold;
    margin: 5px 0;
    text-decoration: none;
}
.container-phone-spacer {
    height: 1px;
    width: 100%;
    background-color: white;
    margin-top: 10px;
    margin-bottom: 19px;
}

.container-phone-social-icons {
    color: white;
    box-shadow: none;
    transition: color 0.3s ease;
    background-color: transparent;
    display: flex;
    align-self: left;
    font-size: 20px;
    margin-right: 10px;
}

.container-phone-icon {
    width: 1em;
    height: 1em;
    fill: #1788DE;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: left;
    font-size: 20px;
    margin-right: 10px;
}
.container-phone-icon svg:hover {
    fill: #0A4B8C;
    transform: scale(1.2);
}

.card-View-Breaker-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 40px;
    background-color: #ffffff;
    overflow: hidden;
}


.section-3 {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #f0f0f0;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
}
.section-3-heading {
    color: #1788DE;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 1 px auto;
    align-self: center;
    font-family: Arial, sans-serif;
  }

  .faq-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .faq-question {
    width: 100%;
    background: #f7f7f7;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
  }

  .faq-question:hover {
    background: #eaeaea;
  }

  .faq-icon {
    transition: transform 0.3s ease;
    margin-left: 1rem;
    margin-left: 10px;
  }
  .faq-icon svg {
    width: 20px;
    height: 20px;
    fill: #1788DE;
  }
  .faq-answer {
    min-width: 800px;
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    background: #fff;
    font-size: 0.95rem;
    border-top: 1px solid #eee;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 200px; /* adjust if needed */
    padding: 1rem;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  @media screen and (max-width: 768px) {
    .faq-item {
        margin-bottom: 0.6rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        
      }
      .faq-question {  
        font-size: 0.85rem;
        
      }
      .faq-container {
        width: 100%;
        min-width: 300px;
        max-width: 400px;
      }
      .faq-answer {
        font-size: 0.8rem;
        max-width: 400px;
        min-width: 300px;
      }
      .faq-icon svg {
        width: 15px;
        height: 15px;
        fill: #01881e;
      }
      .FAQ-headings h1{
        font-size: 1rem;
      }
      .FAQ-headings p {
        font-size: 0.8rem;
      }
  }