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

:root {
    --primary-accent: #1C7C74;
    --secondary-accent: #94B4AC;
    --cta-yellow: #FFC107;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Replicate header CTA style */
.main-cta-button {
    background-color: var(--primary-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.main-cta-button:hover {
    background-color: #155e58; /* Darker shade of primary accent */
}

/* Custom CTA button for in-content calls to action */
.cta-button {
    background-color: var(--cta-yellow);
    color: #111827; /* Dark text for yellow background */
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--primary-accent);
    color: white;
}

/* Typography enhancements */
.prose h1 {
    color: #111827;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.prose h2 {
    color: var(--primary-accent);
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
}

.prose h3 {
    color: #374151;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p.lead {
    font-size: 1.25rem;
    color: #4b5563;
    border-left: 4px solid var(--primary-accent);
    padding-left: 1rem;
}

.prose a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.2s;
}

.prose a:hover {
    color: #155e58;
}

/* Table styles */
.prose table {
    width: 100%;
    margin-top: 2em;
    margin-bottom: 2em;
}

.prose th {
    background-color: #f9fafb;
    color: #111827;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
}

.prose td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    vertical-align: top;
}

.prose tr:nth-child(even) {
    background-color: #f9fafb;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .main-cta-button {
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .prose h1 {
        font-size: 2rem;
    }
    .prose h2 {
        font-size: 1.5rem;
    }
    .prose h3 {
        font-size: 1.25rem;
    }
}
