/* Privacy Policy - Mobile App Style (Matching Terms & Conditions) */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Mobile App Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.back-button:hover {
    opacity: 0.7;
}

.app-header h1 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Privacy Content */
.privacy-content {
    margin-top: 60px;
    padding: 20px 16px 40px;
    background: #ffffff;
    min-height: calc(100vh - 60px);
}

.privacy-container {
    max-width: 100%;
}

/* Page Title */
.page-title {
    margin-bottom: 20px;
}

.page-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
}

.last-updated strong {
    color: #1a1a1a;
}

.intro-text {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

/* Privacy Sections */
.privacy-section {
    margin-bottom: 28px;
}

.privacy-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #E75A5A;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-number {
    color: #E75A5A;
    font-weight: 700;
}

.privacy-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 16px 0 10px;
}

.privacy-section p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 12px;
}

.privacy-section ul {
    margin: 12px 0 12px 20px;
    padding: 0;
}

.privacy-section ul li {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 10px;
}

.privacy-section ul li::marker {
    color: #E75A5A;
}

.privacy-section a {
    color: #E75A5A;
    text-decoration: none;
    font-weight: 500;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* Highlight Important Sections */
.highlight-section {
    background: linear-gradient(135deg, rgba(231, 90, 90, 0.05), rgba(255, 138, 138, 0.05));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #E75A5A;
}

/* Important Box (Blue Box) */
.important-box {
    background: #2563EB;
    color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    margin: 16px 0;
}

.important-box p {
    color: #ffffff;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.important-box strong {
    font-weight: 600;
}

/* Contact Box */
.contact-box {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 24px;
    border-radius: 12px;
    margin-top: 16px;
    display: block;
}

.contact-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #E75A5A;
    margin-bottom: 20px;
    display: block;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #E75A5A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item > div {
    flex: 1;
    min-width: 0;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    color: #666666;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    margin: 0;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 500;
}

.contact-item a {
    color: #E75A5A;
    text-decoration: none;
    word-break: break-all;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Final Agreement */
.final-agreement {
    background: #E75A5A;
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.final-agreement i {
    font-size: 24px;
    flex-shrink: 0;
}

.final-agreement p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #E75A5A;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(231, 90, 90, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(231, 90, 90, 0.5);
}

.back-to-top.show {
    display: flex;
}

/* Footer Styles */
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #E75A5A;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.company-name {
    font-weight: 600;
    color: #ff8a8a !important;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #E75A5A;
    padding-left: 5px;
}

.footer-section ul li i {
    color: #E75A5A;
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (min-width: 768px) {
    .privacy-content {
        padding: 32px 40px 60px;
    }

    .privacy-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-title h2 {
        font-size: 28px;
    }

    .privacy-section h3 {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (min-width: 1024px) {
    .app-header {
        padding: 0 40px;
    }

    .app-header h1 {
        font-size: 20px;
    }

    .privacy-content {
        padding: 40px 60px 80px;
    }

    .privacy-container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Smooth Animations */
.privacy-section {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
