/* ==========================================================================
   POLICY PAGE SPECIFIC STYLES (policy.css)
   ========================================================================== */

/* INNER HERO SECTION */
.inner-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 20px 60px 20px;
    background-image: url('/images/tractor.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    max-width: 800px;
}

.inner-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.inner-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* POLICY CONTENT SECTION */
.policy-section {
    padding: 60px 0;
}

.policy-content-block {
    max-width: 900px;
    margin: 0 auto;
}

.policy-block {
    margin-bottom: 35px;
}

.policy-block h2 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-block p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-block ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--gray);
    font-size: 1rem;
}

.policy-block ul li {
    margin-bottom: 8px;
}

/* TABLET & DESKTOP BREAKPOINTS */
@media(min-width: 768px) {
    .policy-section {
        padding: 100px 0;
    }

    .inner-hero {
        min-height: 50vh;
    }

    .inner-hero-content h1 {
        font-size: 3.5rem;
    }
}