:root {
    /* --primary-green: #48c774;
    --primary-green-dark: #3ec46d; */
    --primary-green: var(--bulma-primary-15);
    --primary-green-dark: var(--bulma-primary-05);
    --link-green: #008000;
    --link-green-hover: #006400;
    --link-green-active: #004d00;
}

/* Base Styles */
a {
    color: var(--link-green);
}

a:hover {
    color: var(--link-green-hover);
}

/* Layout Components */
.green-background {
    background-color: var(--primary-green);
    text-align: center;
    color: white;
    padding: 1.5rem 1rem;
}

.navbar {
    background-color: var(--primary-green);
}

.navbar-item {
    color: white;
}

.navbar-item:hover {
    background-color: var(--primary-green-dark);
    color: white;
}

.footer {
    background-color: var(--primary-green);
}

/* Card Styles */
.card {
    box-shadow: none;
    border: 1px solid #dbdbdb;
}

.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.card-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Hero Section */
.hero-body {
    padding: 3rem 1.5rem;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper img {
    width: 50%;
    max-width: 400px;
    height: auto;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.section-title {
    margin: 0;
    padding: 1rem 0;
}

.content-image-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.content-image-wrapper img {
    width: 100%;
    max-width: 600px;
    height: auto;
    transition: transform 0.3s ease;
}

.content-image-wrapper img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-body {
        padding: 2rem 1rem;
    }

    .hero-image-wrapper img {
        width: 70%;
    }

    .content-image-wrapper img {
        max-width: 90%;
    }

    .title.is-3 {
        font-size: 1.5rem;
    }

    .title.is-4 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-image-wrapper img {
        width: 90%;
    }

    .content-image-wrapper img {
        max-width: 100%;
    }
}

/* Accessibility */
.hero:focus-within,
.content-section:focus-within {
    outline: 2px solid var(--link-green);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero,
    .content-section {
        break-inside: avoid;
    }
}