/* Privacy Policy Styles */
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.effective-date {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    font-family: "brandon-grotesque", sans-serif;
}

.privacy-content ol {
    counter-reset: privacy-counter;
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-content ol > li {
    counter-increment: privacy-counter;
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
    color: #333;
}

.privacy-content ol > li:before {
    content: counter(privacy-counter) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #2c3e50;
    font-family: "brandon-grotesque", sans-serif;
}

.privacy-content ul {
    list-style: none;
    padding-left: 40px;
    margin: 15px 0;
    counter-reset: letter-counter;
}

.privacy-content ul > li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.privacy-content ul > li::before {
    counter-increment: letter-counter;
    content: counter(letter-counter, upper-alpha) ".";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 500;
}

/* Reset counter for nested lists */
.privacy-content ul ul {
    counter-reset: sub-letter-counter;
}

.privacy-content ul ul > li::before {
    counter-increment: sub-letter-counter;
    content: counter(sub-letter-counter, lower-alpha) "."
}

.privacy-content p {
    line-height: 1.8;
    margin: 15px 0;
    color: #333;
}

.privacy-content strong {
    color: #2c3e50;
    font-weight: 600;
    font-family: "brandon-grotesque", sans-serif;
}

.privacy-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-container {
        padding: 20px 15px;
    }
    
    .privacy-content {
        padding: 20px;
        font-size: 15px;
    }
    
    .privacy-content ol > li {
        padding-left: 30px;
    }
    
    .privacy-content ul {
        padding-left: 25px;
    }
}

/* Print styles */
@media print {
    .privacy-content {
        box-shadow: none;
        padding: 0;
    }
    
    .privacy-content ol > li {
        page-break-inside: avoid;
    }
}