/* =====================================================
   Privacy Policy Page Styles
   Matching the blue gradient design from images
   ===================================================== */

/* Hero Section */
.pp-hero-section {
    position: relative;
    padding: 0;
    margin-top: 0;
}

.pp-hero-bg {
    background: linear-gradient(135deg, #e8f4fc 0%, #b8dff5 30%, #89c9ed 70%, #5ab4e5 100%);
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 4px solid #0056a8;
    border-radius: 5px;
}

.pp-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.3) 0%, transparent 40%);
    pointer-events: none;
}

.pp-hero-title {
    font-family: 'Koulen', sans-serif;
    font-size: 72px;
    color: #0056a8;
    text-align: center;
    margin: 0;
    letter-spacing: 2px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

/* Content Section */
.pp-content-section {
    padding: 50px 0 80px;
    background: #ffffff;
}

.pp-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Introduction */
.pp-intro {
    margin-bottom: 40px;
}

.pp-main-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0056a8;
    margin: 0 0 15px 0;
}

.pp-divider {
    height: 2px;
    background: linear-gradient(90deg, #0056a8 0%, #5ab4e5 50%, transparent 100%);
    margin-bottom: 20px;
}

.pp-intro p,
.pp-section p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #0056a8;
    margin-bottom: 15px;
}

.pp-intro p strong,
.pp-section p strong {
    font-weight: 700;
    color: #003d7a;
}

/* Section Styles */
.pp-section {
    margin-bottom: 35px;
}

.pp-section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0056a8;
    margin: 0 0 15px 0;
}

/* List Styles */
.pp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pp-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #0056a8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.pp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #0056a8;
    border-radius: 50%;
}

.pp-list li strong {
    font-weight: 700;
    color: #003d7a;
}

/* Thank You Banner */
.pp-thank-you {
    margin-top: 50px;
    padding: 40px 60px;
    background: linear-gradient(135deg, #e8f4fc 0%, #b8dff5 30%, #89c9ed 70%, #5ab4e5 100%);
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pp-thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 40%);
    pointer-events: none;
}

.pp-thank-you h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #0056a8;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .pp-hero-title {
        font-size: 56px;
    }
    
    .pp-main-title {
        font-size: 28px;
    }
    
    .pp-section-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .pp-hero-bg {
        padding: 40px 20px;
        margin: 15px;
    }
    
    .pp-hero-title {
        font-size: 42px;
    }
    
    .pp-content-section {
        padding: 40px 0 60px;
    }
    
    .pp-main-title {
        font-size: 24px;
    }
    
    .pp-section-title {
        font-size: 20px;
    }
    
    .pp-intro p,
    .pp-section p,
    .pp-list li {
        font-size: 15px;
    }
    
    .pp-thank-you {
        padding: 30px 30px;
    }
    
    .pp-thank-you h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .pp-hero-bg {
        padding: 30px 15px;
        margin: 10px;
        border-width: 3px;
    }
    
    .pp-hero-title {
        font-size: 32px;
    }
    
    .pp-content-wrapper {
        padding: 0 15px;
    }
    
    .pp-main-title {
        font-size: 22px;
    }
    
    .pp-section-title {
        font-size: 18px;
    }
    
    .pp-intro p,
    .pp-section p,
    .pp-list li {
        font-size: 14px;
    }
    
    .pp-thank-you {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .pp-thank-you h2 {
        font-size: 26px;
    }
}
