/* =============================
   Privacy Policy Page Styles
============================= */

/* Hero Section */
.privacy-policy-hero {
    position: relative;
    background: url("../images/factory-image.jpg") center/cover no-repeat;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.privacy-policy-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 25px 40px;
    border-radius: 12px;
    animation: fadeIn 1.5s ease;
}

.privacy-policy-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.privacy-policy-subtitle {
    font-size: 18px;
    color: #ddd;
    margin-top: 10px;
}

/* Fullscreen Content Section */
.privacy-policy-content {
    width: 100%;
    padding: 60px;
    background: #fff;
    color: #333;
    line-height: 1.7;
}

.privacy-policy-container {
    width: 100%;
    /* now takes full screen width */
}

.privacy-policy-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #242176;
    margin-bottom: 20px;
}

.privacy-policy-container h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ee1d24;
    margin: 25px 0 10px;
}

.privacy-policy-container p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #444;
}

/* Grievance Officer Card */
.privacy-policy-card {
    background: #f9f9f9;
    border-left: 5px solid #242176;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-policy-card a {
    color: #ee1d24;
    text-decoration: none;
    font-weight: 600;
}

.privacy-policy-card a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .privacy-policy-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .privacy-policy-title {
        font-size: 32px;
    }

    .privacy-policy-subtitle {
        font-size: 15px;
    }

    .privacy-policy-container h2 {
        font-size: 24px;
    }

    .privacy-policy-container h3 {
        font-size: 20px;
    }

    .privacy-policy-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-title {
        font-size: 26px;
    }

    .privacy-policy-subtitle {
        font-size: 14px;
    }

    .privacy-policy-content {
        padding: 20px;
    }
}

.privacy-policy-container p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #444;
    text-align: justify;
    /* ✅ Added */
}