/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 80px 0;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.privacy-policy .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-header {
    text-align: center;
    margin: 30px 0 0 0;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-header h1 {
    color: #2C3E50;
    font-size: 2.8rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.privacy-header h1 span {
    color: #E85025;
    position: relative;
    display: inline-block;
}

.privacy-header h1 span:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #E85025;
    opacity: 0.7;
}

.privacy-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 10px 0 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.privacy-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 45px 25px 45px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: #2C3E50;
    font-size: 1.2rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-section h3 {
    color: #2C3E50;
    font-size: 1rem;
    margin: 25px 0 15px;
}

.privacy-section h4 {
    color: #2C3E50;
    font-size: 0.9rem;
    margin: 20px 0 10px;
}

.privacy-section p, .privacy-section li {
    color: #555;
    margin-bottom: 15px;
}

.privacy-section ul, .privacy-section ol {
    padding-left: 25px;
    margin: 15px 0;
    list-style: none; /* Remove default list styling */
}

.privacy-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

/* Only show custom bullet if it's a direct child of a ul */
.privacy-section > ul > li:before,
.privacy-section ul:not(ol) > li:before {
    content: "•";
    color: #E85025;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* For nested lists, only show bullets on the first level */
.privacy-section ul ul {
    list-style-type: none; /* Remove bullets from nested lists */
    padding-left: 15px; /* Indent nested lists */
}

/* For ordered lists, use numbers instead of bullets */
.privacy-section ol {
    list-style-type: decimal;
    padding-left: 25px;
}

/* Remove custom bullets for ordered lists */
.privacy-section ol li:before {
    display: none;
}

/* Make strong tags black in the privacy policy */
.privacy-section strong {
    color: #000000 !important;
    font-weight: 600;
}

.privacy-section a {
    color: #E85025;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #d04015;
    text-decoration: underline;
}

.contact-info {
    background: #f9f9f9;
    border-left: 4px solid #E85025;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
}

.contact-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info .icon {
    color: #E85025;
    font-size: 1.2em;
}

.last-updated {
    font-size: 0.9em;
    color: #777;
    font-style: italic;
    margin-top: 40px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 0;
    }
    
    .privacy-content {
        padding: 25px 20px;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-section h3 {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .privacy-policy {
        padding: 0;
    }
    
    .privacy-content {
        box-shadow: none;
        padding: 0;
    }
    
    .privacy-section {
        page-break-inside: avoid;
    }
    
    .privacy-header {
        text-align: left;
        margin-bottom: 30px;
    }
}
