@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #8A1A5D;
    /* Seniorval Purple/Burgundy */
    --primary-action: #B47300;
    /* Seniorval Mustard Yellow */
    --secondary-teal: #2E4C4B;
    /* Seniorval Dark Teal/Green */
    --bg-main: #E5EAE6;
    /* Light Grey/Beige background */
    --text-main: #000000;
    --text-muted: #444743;
    --white: #FFFFFF;
}

html,
body {
    font-family: 'Inter', sans-serif;
    /* fallback for National */
    background-color: var(--bg-main);
    color: var(--text-main);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.search-panel {
    background: white;
    border-radius: 0;
    /* Seniorval uses square corners */
    padding: 3rem;
    box-shadow: none;
    /* Seniorval relies on blocks */
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.recommendation-card {
    background: white;
    border-radius: 0 !important;
    /* Seniorval style */
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: none;
    border: none !important;
    box-shadow: none !important;
}

.why-this-fits {
    background-color: var(--bg-main);
    border-radius: 0;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: none;
}

.why-this-fits h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.match-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.mud-button-filled.mud-button-filled-primary {
    background-color: var(--primary-action) !important;
    /* Mustard yellow for actions */
    border-radius: 0;
    padding: 14px 40px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.mud-input-control.mud-input-control-margin-normal {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.results-intro {
    font-weight: 600;
    color: var(--secondary-teal);
    margin-bottom: 2rem;
    text-align: center;
}

.site-header {
    background-color: var(--primary);
    padding: 1.5rem 0;
    margin-bottom: 3rem;
}

.header-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
}

.site-logo {
    height: 32px;
}