.contact-section {
    background: #f7fdfc;
}
.contact-info h3 {
    text-align: start;
    font-size: 1.5rem;
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1.5;
}
.content-container {
    padding-bottom: 0;
}
.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    gap: 1px;
    background-color: var(--primary-bg-color);
    margin-top: 26px;
    gap: 32px;
}

.contact-open-form-container {
    background-color: var(--primary-bg-color);
    padding: 32px;
    margin-top: 16px;
}
.contact-animation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
.contact-animation {
    width: 50%;
}
form.content-contact-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 60%;
    min-width: 400px;
    text-align: left;
}
.submit-button {
    width: 100%;
    display: flex;
    justify-content: center;
}
.submit-button button {
    padding: 8px 16px;
    background-color: var(--input-bg-color);
    color: var(--input-color);
    border: solid 0.8px #33d4c777;
    
    width: 50%;
    border-radius: 12px;
}

.submit-button button:hover {
    cursor: pointer;
    background-color: var(--primary-bg-color);
}

.submit-button button:active {
    color: var(--primary-color);
    background-color: #33d4c7;
    border-color: var(--primary-color);
}

input,
textarea {
    width: 98%;
    padding: 12px 1%;
    background-color: var(--input-bg-color);
    border: 0;
    border-radius: 4px;
    color: var(--input-color);
    box-shadow: 0px 0px 4px 1px #0007;
    font-size: 16px;
}
form label {
    font-size: 20px;
    font-weight: 600;
}
.mandatory {
    color: rgb(182, 0, 6);
}

.contact-names-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
}
.contact-names-container > div {
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .contact-more-info-container {
        flex-direction: column;
    }
    form.content-contact-right {
        width: 75%;
    }
    .contact-names-container {
        flex-direction: column;
    }
    .contact-form {
        width: 100%;
    }
}
@media screen and (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-animation {
        transform: scale(0.5);
        margin-top: -75px;
        margin-bottom: -75px;
    }
    form.content-contact-right {
        width: 80%;
    }
}
@media screen and (max-width: 850px) {
    form.content-contact-right {
        min-width: 0;
        width: 95%;
    }
}


.contact-info {
    flex: 1 1 350px;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #111827;
  }
  
  .contact-info .subheadline {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #374151;
    text-align: center;
  }
  
  .trust-points {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  
  .trust-points li {
    margin-bottom: 0.5rem;
    color: #065f46; /* dark teal for trust checkmarks */
    font-size: 0.95rem;
  }
  
  .alt-contact {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #374151;
  }
  .alt-contact a {
    color: #33d4c7;
    font-weight: 500;
    text-decoration: none;
  }