
.contact-page {
    padding: 60px 50px;
  }

  span {
    font-size: 14px;
    text-align: left;
  }

  .contact-title {
    font-size: 50px;
    font-weight: bolder;
    -webkit-text-stroke: 1px #027F00;
    text-align: center;
    color: #027F00;
    margin-bottom: 80px;
  }
  
  .contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-info {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-info strong {
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
  }
  
  .info-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .map-embed {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
    min-height: 280px;
  }
  
  .map-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
    border-radius: 8px;
  }

  .contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 390px;
  }
  
  .contact-form .description {
    font-size: 12px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .custom-title-dropdown {
    position: relative;
    width: 80px;
    font-family: 'PlusJakartaSans', sans-serif;
  }
  
  .title-toggle {
    appearance: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
  }
  
  .title-menu {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 10;
    border-radius: 4px;
    margin-top: 2px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    list-style: none; 
    padding: 0;        
    margin: 0;         
  }
  
  .title-menu li {
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .title-menu li:hover {
    background-color: #f0f0f0;
  }
  
  
.custom-menu-dropdown {
  position: relative;
  width: 250px;
  font-family: 'PlusJakartaSans', sans-serif;
  margin-bottom: 15px;
}

.menu-toggle {
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  user-select: none;
}

.menu-list {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 998;
  border-radius: 4px;
  margin-top: 2px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0;
}

.menu-list li.menu-group > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 12px;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  cursor: pointer;
}

.menu-list li.menu-group > a:hover {
  background-color: #e9e9e9;
}

.menu-list > li:not(.menu-group) {
  font-size: 12px;
  font-weight: bold;
  color: #000;
  padding: 8px 16px;
  cursor: pointer;
}

.menu-list > li:not(.menu-group):hover {
  background-color: #f0f0f0;
}


.menu-list .submenu {
  display: none;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.menu-list .submenu li {
  padding: 6px 16px;
  font-size: 12px;
  color: #8e8e8e;
  background: #fff;
  cursor: pointer;
}

.menu-list .submenu li:hover {
  background-color: #f0f0f0;
}

.arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 10px;
}

.menu-list li.menu-group.open > a .arrow {
  transform: rotate(135deg);
}

  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group.double {
    flex-direction: row;
    gap: 10px;
  }
  
  input, select, textarea {
    font-size: 13px;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
  }
  
  textarea {
    resize: none;
    height: 80px;
  }
  
  .send-btn {
    background-color: #027F00;
    width: 120px;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    align-self: flex-end;
    transition: 0.3s ease;
  }
  .send-btn:hover {
    background-color: #088c33;
  }

  .info-item {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap; 
  }
  
  .contact-block {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-break {
    display: none;
  }

  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      gap: 100px;
    }

    .contact-title {
      font-size: 32px;
      margin-bottom: 30px;
  }
    .contact-form .description {
    font-size: 15px;
  }

    .contact-form {
    order: 1; 
  }

    .contact-info {
    order: 2; 
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-block {
    width: 100%;
  }

  .mobile-break {
    display: inline;
  }

  .contact-content {
    flex-direction: column;
  }

    .map-embed iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 8px;
  }
  
    .form-group.double {
      flex-direction: column;
    }

    .contact-info strong {
      font-size: 20px;
      text-align: center;
  }
    span {
    font-size: 14px;
    text-align: center;
  }
  }
  