.page-hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 100px;
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
}

.policy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.policy-text {
    line-height: 1.8;
    color: #333;
}

.policy-text h1, .policy-text h2, .policy-text h3 {
    color: #2d5016;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-text h1 {
    font-size: 1.8rem;
    border-bottom: 2px solid #2d5016;
    padding-bottom: 10px;
}

.policy-text h2 {
    font-size: 1.5rem;
}

.policy-text h3 {
    font-size: 1.3rem;
}

.policy-text p {
    margin-bottom: 15px;
}

.policy-text ul, .policy-text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-text li {
    margin-bottom: 8px;
}

.no-content {
    text-align: center;
    padding: 40px;
    color: #666;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 20px;
        margin: 0 15px;
    }
    
    .policy-content {
        padding: 40px 0;
    }
}