/* Container */
#privacy-section {
    max-width: 900px;       /* Restrict width for readability */
    margin: 0 auto;         /* Center container */
    padding: 40px 20px;     
    font-family: 'Georgia', serif;
    color: #333;
    line-height: 1.8;
    background: red;
}

/* Header */
.privacy-header {
    margin-bottom: 30px;
}

.privacy-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.privacy-date {
    font-style: italic;
    margin-bottom: 15px;
}

.privacy-intro {
    font-size: 1.1rem;
}

/* Accordion Sections */
.privacy-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #fafafa;
    overflow: hidden;
}

.privacy-subtitle {
    margin: 0;
}

.privacy-button {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-size: 1.1rem;
    background-color: #f0f0f0;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.privacy-button:hover {
    background-color: #e0e0e0;
}

.privacy-button.collapsed {
    background-color: #f9f9f9;
}

/* Accordion body */
.privacy-collapse {
    padding: 15px 25px;
    background-color: #fff;
}

.privacy-body ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.privacy-body li {
    margin-bottom: 8px;
}

/* Contact section */
.privacy-contact {
    list-style-type: none;
    padding-left: 0;
}

.privacy-contact li {
    margin-bottom: 5px;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 30px 15px;
    }
    .privacy-button {
        font-size: 1rem;
        padding: 12px 15px;
    }
    .privacy-body {
        font-size: 0.95rem;
    }
}
