/* Policy Pages Styles - Following Existing Design Theme */

/* Page Container */
.policy-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    color: #ffffff;
}

/* Content Container */
.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Back Button Styles */
.back-button {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #121212;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    margin-bottom: 2rem;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #00b894, #00d4aa);
}

.back-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #f8f9fa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Content Card */
.content-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #1f1f1f 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
}

/* Section Styles */
.section {
    margin-bottom: 2.5rem;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #00d4aa;
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.4);
}

.section-content {
    color: #f8f9fa;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.section-content p {
    margin-bottom: 1rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* List Styles */
.content-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.content-list li {
    padding: 0.5rem 0;
    border-left: 3px solid #00d4aa;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.content-list li:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateX(5px);
}

.content-list li:last-child {
    margin-bottom: 0;
}

/* Ordered List */
.ordered-list {
    list-style: none;
    counter-reset: item;
    padding: 0;
    margin: 1rem 0;
}

.ordered-list li {
    counter-increment: item;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 3rem;
}

.ordered-list li::before {
    content: counter(item);
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #121212;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 184, 148, 0.1) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.1);
}

.highlight-box h3 {
    color: #00d4aa;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.4);
}

.highlight-box p {
    color: #f8f9fa;
    margin: 0;
    line-height: 1.6;
}

/* Contact Info Box */
.contact-info-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info-box p {
    color: #f8f9fa;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-box strong {
    color: #00d4aa;
    min-width: 120px;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    border-left: 4px solid #00d4aa;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-left-width: 6px;
    padding-left: 1.75rem;
}

.faq-question {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: #f8f9fa;
    line-height: 1.6;
}

/* Footer Section */
.page-footer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-info {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-info strong {
    color: #d1d5db;
}

/* Bottom Back Button */
.bottom-back-button {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .content-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.2rem;
        padding: 0 2rem;
    }

    .back-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .content-card {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .back-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.content-card:hover {
    border-color: #00d4aa;
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.15);
}

.section:hover .section-title {
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
}

/* Custom Scrollbar for Policy Pages */
.policy-page::-webkit-scrollbar {
    width: 8px;
}

.policy-page::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.policy-page::-webkit-scrollbar-thumb {
    background: #00d4aa;
    border-radius: 4px;
}

.policy-page::-webkit-scrollbar-thumb:hover {
    background: #00b894;
}
