﻿/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /*background-color: #f2f2f2;*/
    color: #333;
    line-height: 1.6;
}

/* Container */
.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    margin: 40px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Left Column: Form */
.contact-form {
    width: 60%;
    padding-right: 30px;
}

    .contact-form h2 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #0056a3;
    }

    .contact-form label {
        display: block;
        margin-bottom: 6px;
        font-weight: normal;
        color: #666; /* Light gray */
        font-size: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px 12px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
    }

    .contact-form textarea {
        height: 120px;
        resize: vertical;
    }

.form-button:hover {
    background-color: #a10d24;
}

.form-button {
    background-color: #c8102e !important; /* PSA red */
    color: #fff !important;
    padding: 12px 24px;
    border: none;
    border-radius: 8px !important; /* Slightly more rounded */
    font-size: 16px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/* Right Column: Info */
.contact-info {
    width: 35%;
    padding-left: 30px;
    border-left: 1px solid #e0e0e0;
}

    .contact-info h3 {
        font-size: 22px;
        margin-bottom: 10px;
        color: #0056a3;
    }

    .contact-info p {
        margin-bottom: 12px;
        font-size: 16px;
        color: #444;
    }

        /* Apply red and bold style to phone numbers */
        .contact-info p strong {
            color: #c8102e; /* PSA red */
            font-weight: 600;
        }

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        padding: 0;
        border: none;
    }

    .contact-form {
        margin-bottom: 30px;
    }
}
