/* Privacy Policy Page Styles */

* {
    box-sizing: border-box;
}

.privacy-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    width: 100%;
    overflow-x: hidden;
}

.privacy-section .container {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

/* Content Wrapper */
.content-wrapper {
    margin-bottom: 2rem;
    width: 100%;
}

/* Card Styling */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #2a9d8f;
    width: 100%;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Titles */
.section-title {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #2a9d8f;
}

.subsection-title {
    color: #2a2a2a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Paragraphs */
.content-card p {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Bullet List */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.bullet-list li {
    color: #4a4a4a;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

.bullet-list li:last-child {
    margin-bottom: 0;
}

.bullet-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Placeholder Text */
.placeholder {
    
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-style: italic;
   
}

/* Data Retention Table */
.retention-table-container {
    overflow-x: auto;
    margin-top: 1.5rem;
    border-radius: 8px;
}

.retention-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.retention-table thead {
    background: #2a9d8f;
}

.retention-table th {
    color: white;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.retention-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #e0e0e0;
    color: #4a4a4a;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
}

.retention-table tbody tr:last-child td {
    border-bottom: none;
}

.retention-table tbody tr:hover {
    background: #f5f7fa;
}

/* Links */
.content-card a {
    color: #2a9d8f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-card a:hover {
    color: #1e8b7d;
    text-decoration: underline;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section {
        padding: 2rem 0;
    }

    .privacy-section .container {
        padding: 0 1rem;
    }

    .content-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .subsection-title {
        font-size: 1.1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .content-card p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .bullet-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .retention-table th,
    .retention-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 1.5rem 0;
        width: 100%;
    }

    .privacy-section .container {
        width: 100%;
        padding: 0 0.75rem;
        margin: 0 auto;
    }

    .content-wrapper {
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .content-card {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 8px;
        width: 100%;
    }

    .section-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .subsection-title {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.75rem;
    }

    .content-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    .bullet-list {
        margin: 1rem 0;
    }

    .bullet-list li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .bullet-list li:before {
        font-size: 1rem;
    }

    .retention-table-container {
        font-size: 0.8rem;
        overflow-x: auto;
    }

    .retention-table th,
    .retention-table td {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}
