/* Mercer Marsh branding styles */
:root {
    --primary-color: #003b71; /* Mercer Marsh blue */
    --secondary-color: #003b71;
    --accent-color: #003b71; /* Darker blue */
    --text-color: #333;
    --light-bg: hwb(204 96% 2%);
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    margin-bottom: 15px;
}

#logo {
    max-width: 200px;
    height: auto;
}

header h1 {
    color: var(--accent-color);
    font-size: 28px;
}

main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.redirect-box {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    text-align: center;
    transition: transform 0.3s ease;
}

.redirect-box:hover {
    transform: translateY(-5px);
}

.redirect-box h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.redirect-box p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.redirect-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.redirect-button:hover {
    background-color: var(--accent-color);
}

footer {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .redirect-box {
        width: 100%;
    }
} 
