.contact-section {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    height: 100vh;
}

.contact-form-container {
    flex: 1;
    padding: 40px;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    gap:5px;
    justify-content: center;
}

.contact-form-container h1 {
    font-size: 2rem;
    color:#fff;
    margin-bottom: 10px;
}

.contact-form-container p {
    margin-bottom: 30px;
    color: #ddd;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-logo {
    height: 32px;
    margin-right: 20px;
}

.contact-help {
    font-size: 0.9rem;
    color: #ccc;
    padding:10px 120px 10px 20px;
    border:1px solid #ccc;
    border-radius:12px;
}

.contact-help a {
    color: #fff;
    text-decoration: underline;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #bbb;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #1d1d1d;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom:25px;
    margin-bottom:10px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form textarea {
    resize: none;
}

.submit-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 60px;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #ddd;
}

.contact-map-container {
    flex: 1;
    position: relative;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
@media screen and (max-width:767px){
  .contact-section{
    flex-direction:column;
  }
  .contact-form-container{
    text-align:center;
  }
  .contact-helper-text{
    padding:0 60px;
  }
  .contact-form label {
    text-align:left;
  }
}