/* Privacy Policy Page Styles */

.privacy-main {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 40px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: #dee2e6;
}

.breadcrumb-link {
    color: #EB7B60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #d65a3d;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #495057;
    font-weight: 500;
}

/* Privacy Header */
.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #EB7B60, #d65a3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 24px;
}

.privacy-intro {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Privacy Content */
.privacy-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.privacy-section {
    padding: 40px;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #EB7B60, #d65a3d);
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #495057;
    margin: 32px 0 16px;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.privacy-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 8px;
}

.privacy-section strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.right-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #EB7B60;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(235, 123, 96, 0.15);
}

.right-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.right-item p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.5;
    margin: 0;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
}

.contact-item i {
    width: 24px;
    height: 24px;
    color: #EB7B60;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 4px;
}

.contact-item a {
    color: #EB7B60;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d65a3d;
    text-decoration: underline;
}

.contact-item span {
    color: #495057;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.back-to-top-btn {
    display: none;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EB7B60, #d65a3d);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 123, 96, 0.3);
    align-items: center;
    justify-content: center;
}

.back-to-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 123, 96, 0.4);
}

.back-to-top-btn i {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-main {
        padding: 100px 0 60px;
    }
    
    .privacy-title {
        font-size: 2.2rem;
    }
    
    .privacy-intro {
        font-size: 1.1rem;
        padding: 0 16px;
    }
    
    .privacy-section {
        padding: 24px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .privacy-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 20px 16px;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
    
    .breadcrumb-list {
        font-size: 12px;
    }
    
    .contact-item {
        padding: 16px;
    }
}

/* Print Styles */
@media print {
    .privacy-main {
        padding: 0;
        background: white;
    }
    
    .breadcrumb,
    .back-to-top,
    .footer {
        display: none;
    }
    
    .privacy-header {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
    
    .privacy-content {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
    
    .privacy-section {
        border-bottom: 1px solid #dee2e6;
        page-break-inside: avoid;
    }
    
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 