.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy-title {
    text-align: center;
    color: #333;
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
}

.privacy-section {
    margin-bottom: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
}

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

.privacy-section ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.privacy-section ul li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.contact-info {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin: 40px 0 20px;
}

/* Contact Section Styling */
.form-c {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto 40px;
    max-width: 800px;
}

.contact-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 15px;
}

.contact-cell {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-cell:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px;
}

.contact-link img {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.contact-link:hover img {
    transform: scale(1.1);
}

.contact-link:hover {
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        padding: 15px;
    }

    .privacy-title {
        font-size: 2em;
    }

    .privacy-section {
        padding: 20px;
    }

    .privacy-section h2 {
        font-size: 1.3em;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.95em;
    }

    .form-c {
        padding: 20px 10px;
    }

    .contact-table {
        border-spacing: 8px;
    }

    .contact-cell {
        padding: 15px 10px;
    }

    .contact-link {
        font-size: 0.9em;
        flex-direction: column;
        text-align: center;
    }

    .contact-link img {
        margin: 0 0 10px 0;
    }
}

/* Print Styles */
@media print {
    .privacy-container {
        max-width: 100%;
        padding: 0;
    }

    .privacy-section {
        box-shadow: none;
        padding: 15px 0;
        page-break-inside: avoid;
    }

    .contact-table {
        display: none;
    }
}
