.contact-section {
    background-color: #201A46;
    padding: 60px 20px;
    color: #fff;
}

.contact-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10%;
    z-index: 10;
    position: relative;
}

@media (max-width: 1180px) {
    .contact-grid {
        flex-direction: column;
        align-items: stretch;
    }
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-text {
        margin-bottom: var(--spacing-12);
    }
}

.contact-heading {
    font-family: "Franklin Gothic ATF", sans-serif;
    font-size: 64px;
    font-weight: 850;
    text-transform: uppercase;
    line-height: 64px;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: var(--font-size-4xl);
        line-height: 1.05;
    }
}

.contact-subheading {
    font-family: Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-subheading {
        font-size: var(--font-size-sm);
        line-height: normal;
    }
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .contact-form {
        display: flex;
        flex-direction: column;
    }
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 768px) {
    .form-column {
        gap: var(--spacing-12);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: Helvetica, sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 22px;
    font-style: normal;
    line-height: normal;
}

@media (max-width: 768px) {
    .form-group label {
        font-size: var(--font-size-base);
        line-height: normal;
    }
}

input[type="text"],
input[type="email"],
textarea {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px;
    font-family: Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    border: none;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-button {
    width: 164px;
    height: 40px;
    padding: 0 30px;
    align-items: center;
    margin-top: 12px;
    background-color: #fff;
    color: #201A46;
    font-family: Raleway, sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

@media (max-width: 768px) {
    .submit-button {
        margin: auto;
    }
}

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

.thanks {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    visibility: hidden;
}
.thanks h1 {
    font-size: 30px;
}
.thanks h2 {
    color: #CA2C99;
}