.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 30vh;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Common styles for all pages */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.text-primary {
    color: #2a7f62 !important;
}

.bg-primary {
    background-color: #2a7f62 !important;
}

.btn-primary {
    background-color: #2a7f62;
    border-color: #2a7f62;
}

.btn-primary:hover {
    background-color: #236b52;
    border-color: #236b52;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #2a7f62;
}
