/* Privacy Policy Page Styles */

/* Header Section */
.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.policy-title i {
    margin-right: 15px;
    color: #3498db;
}

.policy-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Content Section */
.policy-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    line-height: 1.8;
    color: #333;
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.policy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content a {
    color: #3498db;
    text-decoration: none;
}

.policy-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.policy-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.policy-content table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.policy-content table th,
.policy-content table td {
    padding: 12px;
    border: 1px solid #dee2e6;
}

.policy-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Footer Section */
.policy-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.policy-footer .btn {
    margin: 0 10px;
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.policy-footer .btn i {
    margin-right: 8px;
}

.policy-footer .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.policy-footer .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.policy-footer .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    color: #fff;
}

.policy-footer .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2472a4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-header {
        margin-bottom: 30px;
    }

    .policy-title {
        font-size: 1.75rem;
    }

    .policy-title i {
        margin-right: 10px;
        font-size: 1.5rem;
    }

    .policy-subtitle {
        font-size: 0.85rem;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-content h2 {
        font-size: 1.25rem;
        margin-top: 25px;
    }

    .policy-content h3 {
        font-size: 1.1rem;
        margin-top: 20px;
    }

    .policy-content ul,
    .policy-content ol {
        padding-left: 20px;
    }

    .policy-footer .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .policy-title {
        font-size: 1.5rem;
    }

    .policy-content {
        padding: 15px;
        font-size: 0.95rem;
    }

    .policy-content h2 {
        font-size: 1.15rem;
    }

    .policy-content h3 {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .policy-footer {
        display: none;
    }

    .policy-content {
        box-shadow: none;
        padding: 0;
    }

    .policy-content a {
        color: #000;
        text-decoration: underline;
    }
}
