:root {
    --ce-primary: #2d6a4f;
    --ce-primary-dark: #1b4332;
    --ce-accent: #52b788;
    --ce-light: #f8f9fa;
    --ce-dark: #212529;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--ce-dark);
}

.wp-block-cover {
    background-color: var(--ce-primary-dark);
}

.wp-block-button__link {
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.has-vivid-green-cyan-background-color {
    background-color: var(--ce-primary) !important;
}

.has-vivid-green-cyan-background-color:hover {
    background-color: var(--ce-accent) !important;
}

.wp-block-columns {
    gap: 2rem;
}

.wp-block-column {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

.wp-block-heading {
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    .wp-block-cover {
        min-height: 400px !important;
    }

    .wp-block-cover h1 {
        font-size: 2.2rem !important;
    }

    .wp-block-columns {
        gap: 1rem;
    }
}

a {
    color: var(--ce-primary);
    text-decoration: none;
}

a:hover {
    color: var(--ce-accent);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.wp-block-spacer {
    clear: both;
}
