/* Custom over-rides specifically isolated to the Privacy Policy module */

.privacy-override-section {
    padding-top: 5rem;
    padding-bottom: 8rem; /* Creates comfortable negative spacing profile above the grass decoration */
    
    /* 🥚 FIX: Forces the green block to dynamically fill the monitor height, pushing the grass down */
    min-height: calc(100vh - 160px); /* Adjusts for global navbar and footer height metrics */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* 🎯 FIX: Centers the internal container elements horizontally */
    box-sizing: border-box;
}

/* Centering overrides to align content text */
.row-centered-layout {
    display: flex;
    justify-content: center;
    width: 100%;
}

.privacy-content-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto; /* Ensures margins stay perfectly balanced on wide displays */
    padding: 3rem;
    text-align: left; /* Changes container base to left-aligned for clear legal readability */
}

.policy-intro {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.35rem;
    line-height: 1.8;
    color: #ffe066; /* Accent highlight color for intro statement */
    text-align: center; /* Keeps the intro statement centered */
    margin-bottom: 2.5rem;
}

.policy-section-text {
    margin-bottom: 2rem;
}

.policy-section-text h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.4rem;
    color: #ffe066;
    margin-bottom: 0.5rem;
}

.policy-section-text p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #fff;
    margin: 0;
}

@media (max-width: 700px) {
    .privacy-override-section {
        padding-top: 2.5rem;
        padding-bottom: 6rem;
        min-height: calc(100vh - 120px);
    }
    .privacy-content-card {
        padding: 1.5rem;
    }
    .policy-intro {
        font-size: 1.1rem;
    }
    .policy-section-text h3 {
        font-size: 1.2rem;
    }
    .policy-section-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}