/* =========================================
   Privacy Policy Page Styles
   ========================================= */

/* Hero Banner */
.privacy-hero-section {
    background-color: var(--doddle-bg);
    padding: 55px 0 50px;
    border-bottom: 3px solid rgba(0, 155, 154, 0.15);
}

.privacy-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #174052;
    margin-bottom: 10px;
}

.privacy-hero-subtitle {
    font-size: 1.15rem;
    color: #174052;
    opacity: 0.75;
    margin-bottom: 0;
}

/* Content Area */
.privacy-content-section {
    background: #fff;
}

.privacy-content-section .container {
    padding: 20px 30px 60px;
}

.privacy-intro {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.85;
    border-left: 4px solid var(--doddle-teal);
    padding: 16px 20px;
    background: #f0fafa;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2.5rem;
}

/* Section Headings */
.privacy-section-heading {
    font-size: 1.55rem;
    font-weight: 800;
    color: #7b4bb7;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.privacy-sub-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #174052;
    margin-top: 1.6rem;
    margin-bottom: 0.6rem;
}

/* Body text */
.privacy-content-section p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact Info Box */
.privacy-contact-box {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 1.2rem 0 1.4rem;
}

.privacy-contact-box p {
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
    color: #374151;
}

.privacy-contact-box a {
    color: var(--doddle-teal);
    font-weight: 600;
    text-decoration: none;
}

.privacy-contact-box a:hover {
    text-decoration: underline;
}

/* Data Categories List */
.privacy-data-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.privacy-data-list li {
    border-left: 3px solid var(--doddle-teal);
    padding: 10px 16px;
    margin-bottom: 8px;
    background: #f9fffe;
    border-radius: 0 6px 6px 0;
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
}

/* General Bullet List */
.privacy-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 1.2rem 0;
}

.privacy-bullet-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
}

.privacy-bullet-list li::before {
    content: "\f111";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 0.45rem;
    color: var(--doddle-teal);
    position: absolute;
    left: 4px;
    top: 10px;
}

/* Table */
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.93rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.privacy-table thead tr {
    background-color: #174052;
    color: #fff;
}

.privacy-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.privacy-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.privacy-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.privacy-table tbody tr:hover {
    background-color: #f0fafa;
}

.privacy-table tbody td {
    padding: 14px 16px;
    color: #374151;
    vertical-align: top;
    line-height: 1.65;
}

/* Rights Cards */
.privacy-rights-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 1.2rem 0 2rem;
}

.privacy-right-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 20px;
    background: #fff;
    transition: box-shadow 0.25s, transform 0.25s;
}

.privacy-right-item:hover {
    box-shadow: 0 4px 16px rgba(0, 155, 154, 0.12);
    transform: translateY(-2px);
}

.privacy-right-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #7b4bb7;
    margin-bottom: 8px;
}

.privacy-right-item p {
    font-size: 0.92rem !important;
    color: #4b5563 !important;
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
}

/* Links in body */
.privacy-content-section a {
    color: var(--doddle-teal);
    text-decoration: none;
}

.privacy-content-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-hero-title {
        font-size: 2rem;
    }

    .privacy-section-heading {
        font-size: 1.3rem;
    }

    .privacy-rights-list {
        grid-template-columns: 1fr;
    }

    .privacy-content-section .container {
        padding: 10px 15px 40px;
    }

    .privacy-table thead th,
    .privacy-table tbody td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}