/* styles.css - Option 1: Enhanced shadow and color boost */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header, footer {
    background-color: #005f5b; /* Dark teal background */
    color: white;
    text-align: center;
    padding: 20px;
}

header {
    padding: 30px 20px;
}

.agency-logo {
    max-width: 350px; /* Larger for prominence */
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6)) 
            brightness(1.15) 
            contrast(1.2); /* Boosts teal/orange vibrancy */
}

h1 {
    margin: 0;
    font-size: 1.8em;
}

main {
    padding: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-logo {
    font-size: 48px;
    color: #369992; /* Teal */
    margin-bottom: 15px;
}

h2 {
    font-size: 1.3em;
    margin: 10px 0;
    color: #333;
}

p {
    font-size: 0.95em;
    margin: 8px 0;
    flex-grow: 1;
}

.note {
    font-style: italic;
    color: #666;
    font-size: 0.85em;
}

.btn {
    display: inline-block;
    background-color: #369992;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #CC6C20; /* Orange */
}

footer {
    margin-top: 40px;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}