:root {
    --black: #111111;
    --amber: #d49a00; /* Richer amber for readability */
    --light-grey: #f8f9fa;
    --border: #e1e4e8;
    --text-main: #24292e;
    --text-muted: #586069;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}

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

/* Header */
.main-header {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    width: 80px;
    height: 80px;
}

.header-text h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.header-text p {
    margin: 5px 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.location {
    font-size: 0.85rem;
    color: #cc4400; /* Pin color */
    font-weight: 600;
}

/* Router Grid */
.router-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 60px 0;
}

.pillar {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.pillar:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-grey);
}

.pillar-icon { font-size: 1.4rem; }

.pillar h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: var(--text-muted);
}

.pillar h3 {
    margin: 10px 0;
    font-size: 1.4rem;
}

.pillar p {
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: block;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.btn:hover { opacity: 0.9; }

.btn-black {
    background: var(--black);
    color: white;
}

.btn-amber {
    background: var(--amber);
    color: white;
}

/* Footer */
.site-footer {
    background: var(--light-grey);
    padding: 50px 0 30px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-nav {
    margin-bottom: 25px;
}

.footer-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-socials {
    margin-bottom: 25px;
}

.footer-socials a {
    margin: 0 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

@media (max-width: 600px) {
    .header-flex { flex-direction: column; text-align: center; }
    .footer-nav a { display: block; margin: 10px 0; }
}
.location {
    font-size: 0.9rem;
    color: #cc4400; 
    font-weight: 600;
    
    /* This aligns the icon and text perfectly */
    display: inline-flex;
    align-items: center;
    gap: 4px; 
}

.location .material-symbols-outlined {
    /* Adjust 'opsz' or 'font-size' to match your text height */
    font-size: 1.1rem; 
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
