.main{
    width: 90%;
    margin-inline: auto;
}
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.privacy-header {
    /*! background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%); */
    /*! color: white; */
    padding: 20px 30px;
    /*! text-align: center; */
}

.privacy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 10px;
}

.privacy-intro {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 25px;
    margin: 30px;
    border-radius: 0 8px 8px 0;
}

.privacy-intro p {
    margin-bottom: 15px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-intro strong {
    color: #3498db;
}

.privacy-section {
    padding: 0 30px 30px;
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.privacy-section h3 {
    color: #34495e;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    color: #555;
}

.highlight {
    background-color: #e8f4f8;
    border: 1px solid #3498db;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.highlight strong {
    color: #2c3e50;
}

.contact-info {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.contact-info strong {
    color: #155724;
}

.privacy-container a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-container a:hover {
    color: #2c3e50;
    text-decoration: underline;
}

.privacy-container strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .privacy-header {
        padding: 30px 20px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-intro {
        margin: 20px;
        padding: 20px;
    }

    .privacy-section {
        padding: 0 20px 20px;
    }

    .privacy-container h2 {
        font-size: 1.3rem;
    }

    .privacy-container h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .privacy-intro {
        margin: 15px;
        padding: 15px;
    }

    .privacy-section {
        padding: 0 15px 15px;
    }
}