/* Policy Pages Design System */
.policy-page-wrapper {
    background-color: #f8f9fa;
    padding-bottom: 50px;
}

.policy-hero {
    background: linear-gradient(135deg, #ff385c 0%, #e31c5f 100%);
    /* color: white; */
    padding: 80px 0 60px;
    margin-bottom: -40px;
    text-align: center;
}

.policy-hero h1 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.policy-hero .lead {
    opacity: 0.9;
    font-weight: 300;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.policy-content-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.7;
    color: #4a4a4a;
}

.policy-content-card h2 {
    color: #2d2d2d;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff385c;
    display: inline-block;
    padding-bottom: 5px;
}

.policy-content-card h3 {
    color: #2d2d2d;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.policy-content-card p {
    margin-bottom: 15px;
}

.policy-content-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content-card li {
    margin-bottom: 8px;
}

.last-updated {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.policy-contact-box {
    background: #fff5f7;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    border-left: 4px solid #ff385c;
}

.policy-contact-box h4 {
    color: #ff385c;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.policy-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.policy-contact-item i {
    width: 25px;
    color: #ff385c;
    margin-right: 10px;
    text-align: center;
}

.policy-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.policy-contact-item a:hover {
    color: #ff385c;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 0 50px;
    }
    
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .policy-content-card {
        padding: 25px;
    }
}
