#contact{
    /* padding: 12em 0 5em 0; */
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../../images/investors.webp");
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../../images/investors.webp");
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../../images/investors.webp");
    background-image: linear-gradient(top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../../images/investors.webp");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

#hero-split .hero-text  {
    padding-left: 20px;
}

#hero-split .hero-text h1 {
    padding-top: 1em;
    font-size: 2em;
    font-family: "Venera900";
}

#hero-split .hero-text p {
    font-size: 1.25em;
    color: white;
}

#contact-btn{
    text-align: center;
}
.form-buttons{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* Turnstile CAPTCHA styling */
.cf-turnstile {
    /* margin: 1em 0; */
    display: flex;
    justify-content: center;
}

/* Disabled submit button styling */
#submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #666 !important;
    border-color: #666 !important;
}

#submit-btn:disabled:hover {
    background-color: #666 !important;
    border-color: #666 !important;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); 
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
    /* border-radius: 10px; */
}

.modal-content {
    width: fit-content;
    background: #2e3842;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); 
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.close-modal {
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 20px;
}