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

body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    font-family: 'Lato', sans-serif;
}

.cta-button {
    display: inline-block;
    background-color: #1C7C74;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.cta-button:hover {
    background-color: #16635D;
    text-decoration: none;
    color: #fff;
}

.content-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lead {
    font-size: 1.25rem;
}

#eav-table table {
    font-size: 0.9rem;
}

#eav-table th, #eav-table td {
    border-color: #e2e8f0;
}
