@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    background: linear-gradient(180deg, #F7FFF7 0%, rgba(78, 205, 196, 0.1) 100%);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.hero {
    background-image:
        linear-gradient(135deg, rgba(26, 83, 92, 0.85) 0%, rgba(26, 83, 92, 0.75) 100%),
        url(https://www.heritage.org/sites/default/files/styles/facebook_optimized/public/images/2020-09/2020_09_0221_ElectoralCollege_Webgraphics_v8_benefits.png?itok=la9dIp0-);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 1rem;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #FFE66D;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.scroll-arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 2;
    opacity: 1;
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow span {
    font-size: 3rem;
    color: #F7FFF7;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content {
    padding: 5rem 2rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.content h2 {
    color: #1a535c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    color: #1a535c;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(26, 83, 92, 0.1);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.blog-card h2 {
    color: #1a535c;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding: 0;
}

.blog-card h2::after {
    display: none;
}

.blog-card p {
    color: #1a535c;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    flex-grow: 1;
}

.blog-card .read-more {
    color: #FF6B6B;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.blog-card:hover .read-more {
    color: #1a535c;
}

.see-more {
    display: inline-block;
    color: #FF6B6B;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.see-more:hover {
    color: #1a535c;
}

.back-arrow {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(26, 83, 92, 0.15);
    text-decoration: none;
    color: #1a535c;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.back-arrow:hover {
    background: #1a535c;
    color: white;
}