/* Privacy Policy Page Styles */
.privacy-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.privacy-policy-header {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-policy-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/privacy-pattern.svg') center/cover no-repeat;
    opacity: 0.1;
}

.privacy-policy-main-title {
    font-size: 3rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.privacy-policy-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Info Boxes Section */
.privacy-policy-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.privacy-policy-info-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.privacy-policy-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.privacy-policy-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border-radius: 50%;
    color: white;
}

.privacy-policy-info-icon svg {
    width: 30px;
    height: 30px;
}

.privacy-policy-info-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.privacy-policy-info-text {
    color: #666;
    line-height: 1.6;
}

/* Content Section */
.privacy-policy-content-section {
    margin: 80px 0;
}

.privacy-policy-section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.privacy-policy-section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    margin: 15px auto 0;
    border-radius: 2px;
}

.privacy-policy-content-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.privacy-policy-card-highlight {
    border-left: 4px solid #6e8efb;
    background-color: #f9f9ff;
}

.privacy-policy-card-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #444;
}

.privacy-policy-card-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-policy-card-list {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-policy-card-list li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* FAQ Section */
.privacy-policy-faq-section {
    margin: 80px 0;
}

.privacy-policy-faq-main-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.privacy-policy-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.privacy-policy-faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: background 0.2s ease;
}

.privacy-policy-faq-question:hover {
    background: #f9f9f9;
}

.privacy-policy-faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.privacy-policy-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f9f9f9;
}

.privacy-policy-faq-answer p {
    padding: 20px 0;
    color: #555;
    line-height: 1.7;
}

.privacy-policy-faq-item.active .privacy-policy-faq-answer {
    max-height: 500px;
    padding: 0 20px;
}

.privacy-policy-faq-item.active .privacy-policy-faq-icon {
    transform: rotate(45deg);
}

.privacy-policy-internal-link {
    color: #6e8efb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.privacy-policy-internal-link:hover {
    color: #a777e3;
    text-decoration: underline;
}

/* CTA Section */
.privacy-policy-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9ff, #f0f2ff);
    border-radius: 12px;
    margin: 80px 0;
}

.privacy-policy-cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.privacy-policy-cta-text {
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.privacy-policy-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.3);
}

.privacy-policy-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 142, 251, 0.4);
}

.privacy-policy-related-tool {
    margin-top: 30px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-main-title {
        font-size: 2.2rem;
    }
    
    .privacy-policy-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .privacy-policy-section-title,
    .privacy-policy-faq-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-header {
        padding: 60px 0 40px;
    }
    
    .privacy-policy-main-title {
        font-size: 1.8rem;
    }
    
    .privacy-policy-info-box {
        padding: 20px;
    }
}