:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #4a4a4a;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
}

.policy-header {
    background: var(--primary-color);
    padding: 1.5rem 0;
    border-bottom: 4px solid var(--secondary-color);
}

.policy-header .logo {
    height: 40px;
}

.policy-content {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.phonepe-branding {
    background: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.policy-footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.policy-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-footer a:hover {
    color: white;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}