/* style/privacy-policy.css */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #FF4500, #1E90FF);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.page-privacy-policy__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #eee;
}

.page-privacy-policy__content {
    padding: 60px 0;
    background-color: #fff;
}

.page-privacy-policy__subtitle {
    font-size: 2em;
    color: #FF4500;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #1E90FF;
    padding-bottom: 10px;
}

.page-privacy-policy__content h3 {
    font-size: 1.5em;
    color: #1E90FF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__content p {
    margin-bottom: 15px;
    color: #555;
}

.page-privacy-policy__content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-privacy-policy__content ul li {
    margin-bottom: 8px;
}

.page-privacy-policy__content strong {
    color: #333;
}

.page-privacy-policy__content a {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__content a:hover {
    text-decoration: underline;
}

.page-privacy-policy__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__cta-section {
    background-color: #f0f8ff;
    padding: 40px;
    margin-top: 60px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.page-privacy-policy__cta-section p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #333;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-privacy-policy__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-privacy-policy__btn--primary {
    background-color: #FF4500;
    color: #fff;
    border: 2px solid #FF4500;
}

.page-privacy-policy__btn--primary:hover {
    background-color: #e63c00;
    transform: translateY(-2px);
}

.page-privacy-policy__btn--secondary {
    background-color: #1E90FF;
    color: #fff;
    border: 2px solid #1E90FF;
}

.page-privacy-policy__btn--secondary:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__title {
        font-size: 2.5em;
    }

    .page-privacy-policy__description {
        font-size: 1em;
    }

    .page-privacy-policy__subtitle {
        font-size: 1.8em;
    }

    .page-privacy-policy__content h3 {
        font-size: 1.3em;
    }

    .page-privacy-policy__cta-section {
        padding: 30px;
    }

    .page-privacy-policy__cta-section p {
        font-size: 1.1em;
    }

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-privacy-policy__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__title {
        font-size: 2em;
    }

    .page-privacy-policy__hero {
        padding: 60px 15px;
    }

    .page-privacy-policy__content {
        padding: 40px 0;
    }

    .page-privacy-policy__subtitle {
        font-size: 1.5em;
    }
}