/* Color Palette */
:root {
    --soft-blue: #5598ca;
    --white: #FFFFFF;
    --blue: #2196F3;
    --salad-green: #C8E6C9;
    --deep-blue: #1976D2;
    --light-grey: #f5f5f5;
}

/* Global Styles */
body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    line-height: 1.6;
}

.soft-blue {
    background-color: var(--soft-blue) !important;
}

.deep-blue {
    background-color: var(--deep-blue) !important;
}

.salad-green {
    background-color: var(--salad-green) !important;
}

.soft-blue-text {
    color: var(--soft-blue) !important;
}

.salad-green-text {
    color: #388E3C !important;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.zip-search {
    border-radius: 8px;
    padding: 2rem !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-image {
    text-align: center;
    padding: 2rem;
}

.hero-image .material-icons {
    font-size: 8rem;
    opacity: 0.8;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Provider Logos */
.provider-logo {
    text-align: center;
    padding: 1.5rem !important;
    transition: transform 0.3s ease;
    border-radius: 8px !important;
}

.provider-logo:hover {
    transform: translateY(-5px);
}

.provider-name {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #333;
}

/* Tool Cards */
.tool-card {
    text-align: center;
    padding: 2rem 1rem !important;
    border-radius: 8px !important;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card h5 {
    margin: 1rem 0;
    font-weight: 600;
}

/* Promo Cards */
.promo-card {
    border-radius: 8px;
}

.promo-card .card-image {
    height: 160px;
    overflow: hidden;
}

.promo-card .card-image img {
    object-fit: cover;
    height: 100%;
}

/* Cards */
.card {
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.card.hoverable:hover {
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2);
}

.card-content {
    padding: 1.5rem;
}

.card-action {
    border-top: 1px solid rgba(160,160,160,0.2);
    padding: 1rem 1.5rem;
}

/* Navigation */
.brand-logo {
    font-weight: 600;
}

.brand-logo .material-icons {
    margin-right: 0.5rem;
}

/* Buttons */
.btn {
    border-radius: 4px;
    font-weight: 500;
    text-transform: none;
}

/* Pagination */
.pagination li.active {
    background-color: var(--blue);
}

/* Markdown Body */
.markdown-body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    color: var(--deep-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.markdown-body p {
    margin-bottom: 1rem;
}

.markdown-body ul,
.markdown-body ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .provider-logo {
        padding: 1rem !important;
    }
}

/* Utilities */
.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-date {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.bg-light {
    background-color: var(--light-grey) !important;
}