﻿.contact-table {
    display: table;
    margin-left: auto;
    margin-right: auto;
}
.row-table {
    display: table-row;
}
.label, .value {
    display: table-cell;
    padding: 8px 16px;
    vertical-align: top;
}
.label {
    font-weight: bold;
    white-space: nowrap;
    text-align: right;
    padding-right: 5rem;
}
.value {
    text-align: left;
}
.value a {
    color: #CB2C00;
    text-decoration: none;
}
.contact-table-section {
    margin-top: 25px;
}
.value a:hover {
    text-decoration: underline;
}
.cta-button {
    display: inline-block;
    margin: 40px auto 0;
    padding: 15px 60px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #00005A;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.cta-button:hover, .cta-button:focus {
    background-color: #1a1a8c; /* Slightly lighter navy for hover */
    outline: none;
}
@media only screen and (max-width: 768px) {
    .label {
        padding-right: 1rem;
    }
}