.homepage-wrapper {
    font-family: 'Segoe UI', sans-serif;
    padding: 0;
    margin: 0;
}

.hero {
    background: linear-gradient(to right, #306B77, #478A95);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 1.5rem;
    }

.cta-button {
    background-color: #FFD166;
    color: #000;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.intro, .cta-banner {
    padding: 2rem 1rem;
    text-align: center;
}

    .intro h2, .cta-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

.link-button, .cta-button-alt {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1rem;
    background: #306B77;
    color: white;
    border-radius: 4px;
    text-decoration: none;
}

.services-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
}

.card {
    background: #58c8c8;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

    .card h3 {
        margin-top: 0;
    }

.small-link {
    color: #306B77;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.8rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services-links {
        flex-direction: row;
        justify-content: space-between;
    }

    .card {
        flex: 1;
        margin: 0 0.5rem;
    }
}



.highlight {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin: 0 0 0.5rem;
}

    .highlight strong {
        color: #306B77;
        font-size: 1.2rem;
    }

.citation {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

    .citation a {
        color: #306B77;
        text-decoration: underline;
        font-weight: 500;
    }
.hero-section {
    background-image: url('/images/massachusetts-hero-1024.jpg');
    background-size: cover;
    position: relative;
    height:65vh;
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url('/images/massachusetts-hero-768.jpg');
        height: 47vh;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background-image: url('/images/massachusetts-hero-320.jpg');
        height:47vh;
    }
}