.contact-header {
    padding-top: 80px; 
    padding-bottom: 10px;
    
    padding-left: 10px;
    padding-right: 10px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.1;
    margin-top: 0;
}

.subtitle-hero {
    font-size: 1.4rem;
    color: var(--color-text-light, #ffffff);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-form-section {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 60px;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.contact-intro {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 800px;
    margin-top: 0;
    margin-bottom: 10px; 
}

.contact-intro:last-of-type {
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px; 
    margin-left: auto;
    margin-right: auto;
}

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

.form-group label {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    
    text-align: center; 
    width: 100%;
    display: block;
}

.form-group input, 
.form-group textarea {
    background-color: #ffffff; 
    color: #000000; 
    border: 1px solid #ffffff;
    border-radius: 25px; 
    padding: 15px 20px; 
    font-family: inherit;
    font-size: 1rem;
    width: calc(100% - 40px); 
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background-color: #ffffff;
}

.form-group textarea {
    border-radius: 20px; 
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-checkbox {
    display: flex;
    align-items: center; 
    gap: 12px;
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
    width: calc(100% - 40px); 
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px; 
}

.form-checkbox input {
    transform: scale(1.2); 
    cursor: pointer;
    margin-top: 0; 
}

.submit-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 50px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px; 
    cursor: pointer;
    align-self: center; 
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.8;
}