/* Contact Form Styling */
.form-header {
    font-size: 2rem;
    font-weight: 600;
}

.form-line {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #363537;
}

.form-textbox,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 2px;
    background: white;
    transition: all 0.2s ease-out;
    font-family: inherit;
}

.form-textbox:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3066BE;
    box-shadow: 0 0 0 2px rgba(48,102,190,0.1);
}

.name-inputs {
    display: flex;
    gap: 1rem;
}

.name-inputs .form-textbox {
    flex: 1;
}

.form-buttons-wrapper {
    margin-top: 2rem;
}

.submit-button {
    background: #363537;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    transform: skewX(-15deg);
}

.submit-button span {
    display: inline-block;
    transform: skewX(15deg);
}

.submit-button:hover {
    background: linear-gradient(145deg, #3066BE, #004a8c);
    transform: skewX(-15deg) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Contact Info Styling */
.contact-info {
    padding: 2rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 2px;
    height: 100%;
    margin-top: 0;
}

.contact-info h2.underlined-header {
    color: #363537;
    margin: 0 0 1.5rem 0 !important;
    padding: 0;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
}

.contact-info hr {
    margin: 1.5rem 0;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
    height: 1px;
    border: none;
}

.contact-info a {
    color: #3066BE;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #9C0A07;
}