.text-green {
    color: #2e7d32;
}

.bg-light-green {
    background-color: #f1f8e9;
}

.bg-green {
    background-color: #2e7d32;
}

.founder-image {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-divider {
    height: 2px;
    background-color: #e8f5e9;
    margin: 2rem 0;
}

.btn-green {
    background-color: #2e7d32;
    color: white;
}

.btn-green:hover {
    background-color: #1b5e20;
    color: white;
}

#header-container {
    min-height: 56px;
}

.recipe-image {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 2rem;
}

/* Recipe Stats */
.recipe-stats {
    background-color: #f1f8e9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.stat-value {
    display: block;
    font-weight: bold;
    color: #2e7d32;
    font-size: 1.1rem;
}

.stat-icon {
    font-size: 1.5rem;
    color: #2e7d32;
}