/* Header Section */
.privacy-header-section {
    /* background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
    padding: 90px 0 120px;
    text-align: center;
    /* color: #ffffff; */
}

.privacy-header-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.privacy-header-desc {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content Wrapper */
.privacy-main-wrapper {
    margin-top: -60px; /* Pulls cards upward overlapping the header */
    padding-bottom: 80px;
}

/* Card Layout for Policy Sections */
.privacy-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease-in-out;
}

.privacy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.privacy-card-title {
    font-family: "Poppins", sans-serif;
    color: #1e3a8a; /* Deep Trust Blue */
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.privacy-card-icon {
    background-color: #d1fae5; /* Light Green */
    color: #059669; /* Dark Green */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 18px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.privacy-card-text {
    color: #475569;
    line-height: 1.75;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Lists inside Cards */
.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 0;
}

.privacy-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 1.05rem;
    font-weight: 500;
}

.privacy-list li::before {
    content: "\f058"; /* FontAwesome Check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #3b82f6;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
}

/* Contact Box at the Bottom */
.privacy-cta-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.08);
    border-top: 6px solid #1e3a8a;
    margin-top: 50px;
}

.privacy-cta-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.privacy-cta-text {
    color: #64748b;
    margin-bottom: 35px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Buttons */
.privacy-btn-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-btn {
    font-family: "Poppins", sans-serif;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}

.privacy-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.privacy-btn-wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.privacy-btn-wa:hover {
    background: linear-gradient(135deg, #1da851 0%, #075e54 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.privacy-btn-call {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.privacy-btn-call:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}
.btn-call {
    background-color: #0b5ed7;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-call:hover {
    background-color: #0a4ebd;
    color: white;
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.3);
    transform: translateY(-2px);
}

.btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-header-section {
        padding: 70px 20px 90px;
    }
    .privacy-header-title {
        font-size: 2.2rem;
    }
    .privacy-card {
        padding: 30px 20px;
    }
    .privacy-card-title {
        font-size: 1.25rem;
    }
    .privacy-cta-box {
        padding: 40px 20px;
    }
    .privacy-btn {
        width: 100%;
    }
}
