.contact-container {
    max-width: 1200px;
    margin: 100px auto;
    padding: 30px;
    text-align: center;
}

.contact-section-header {
    margin-bottom: 10px;
}

.contact-section-header h1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.contact-section-header p {
    font-size: 0.9rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.contact-phone-number {
    margin: 30px 0 50px;
    text-align: center;
}

.contact-phone-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #007fd0;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-phone-badge:hover {
    background-color: #0063a6;
}

.contact-phone-badge svg {
    margin-right: 10px;
}

.contact-phone-note {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 8px;
}

.contact-form {
    margin-top: 40px;
    text-align: left;
}

.contact-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 15px;
}

.contact-form-group {
    flex: 1 1 250px;
    margin: 0 10px 20px;
}

.contact-form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.75rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.contact-form-control:focus {
    outline: none;
    border-color: #007fd0;
}

select.contact-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 30px;
}

textarea.contact-form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-asterisk {
    color: #d9534f;
    font-size: 0.9rem;
    margin-left: 5px;
}

.contact-btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.contact-btn {
    display: inline-block;
    background-color: #007fd0;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #0063a6;
}

.contact-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: #666;
}

.contact-secure-badge svg {
    margin-right: 8px;
    color: #4CAF50;
}

@media (max-width: 600px) {
    .contact-form-group {
        flex: 1 1 100%;
    }

    .contact-btn-container {
        justify-content: center;
    }
}