.contact-support-section{
    padding: 60px 40px;
}
.cnt-title{
  text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: 600;
    font-family: var(--heading-font);
}
.support-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.support-box {
  flex: 1 1 45%;
 
  padding: 30px 20px;
  border-radius: 10px;
}
.support-box h4{
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--heading-font);
}
.support-box p{
    color: #606060;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: var(--heading-font);
}
.support-box .icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.btn-outline {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  background:  #39b54a;
  padding: 20px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.get-in-touch {
  background: #111;
  color: #fff;
  padding: 60px 0;
}
.get-in-touch .mini-title {
  color: #fff;
  text-align: center;
  font-size: 25px;
  margin-bottom: 5px;
}
.get-in-touch .section-title {
  font-size: 28px;
  margin-bottom: 30px;
}
.contact-title{
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: 600;
    font-family: var(--heading-font);
}
.touch-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.touch-map {
  width: 40%;
  border-radius: 8px;
}
.touch-image {
   width: 20%;
  border-radius: 8px; 
}
.touch-info {
  flex: 1;
}
.touch-contact p {
  margin: 10px 0;
}


.contact-form-section {
  background: #f9f9f9;
  padding: 60px 0;
}
.form-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.form-text {
  flex: 1 1 300px;
}
.form-text p{
    color: #606060;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: var(--heading-font);
}
.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  padding: 20px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #ebf7ed;
  color: #121813;
  font-size: 14px;
}
.contact-form button {
  background: #39b54a;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}
.contact-form button:hover {
  background: #2e9c3c;
}
.form-image {
  flex: 1 1 200px;
  max-width: 450px;
  width: 100%;
  border-radius: 10px;
}
.contact-content{
  display: flex;
  justify-content: space-between;
}
/* Responsive */
@media (max-width: 991px) {
  .support-box { flex: 1 1 100%; }
  .touch-grid { flex-direction: column; align-items: center; }
  .touch-map, .touch-image { width: 100%; }
  .form-flex { flex-direction: column; }
  .form-image { display: none; }
}
@media (max-width:768px){
  
.touch-info{
  margin-left: 20px;
}
.get-in-touch {
  padding-left: 10px!important;
  padding-right: 20px!important;
}
.contact-form{
  width: 90%!important;
}
}