/* Privacy Policy Styles for Match City */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --background-color: #ecf0f1;
    --white: #ffffff;
    --border-color: #bdc3c7;
    --gradient-start: #74b9ff;
    --gradient-end: #0984e3;
    --city-blue: #2d3436;
    --sky-blue: #74b9ff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    margin: 0;
    padding: 0;
    font-size: 16px;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="city" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%23ffffff" opacity="0.05"/><rect x="2" y="15" width="3" height="5" fill="%23ffffff" opacity="0.1"/><rect x="7" y="12" width="2" height="8" fill="%23ffffff" opacity="0.1"/><rect x="12" y="10" width="4" height="10" fill="%23ffffff" opacity="0.1"/><rect x="17" y="14" width="2" height="6" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23city)"/></svg>') repeat;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--sky-blue), var(--secondary-color), var(--success-color), var(--warning-color), var(--accent-color));
}

header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 25px;
    position: relative;
}

header::after {
    content: '🏙️';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    opacity: 0.8;
}

h1 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, var(--city-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

h2 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 5px solid var(--secondary-color);
    padding-left: 20px;
    position: relative;
    background: linear-gradient(90deg, rgba(116, 185, 255, 0.1), transparent);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

h2::before {
    content: '🏢';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    background: var(--white);
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.policy-content {
    margin-bottom: 40px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.8;
}

ul {
    margin-bottom: 25px;
    padding-left: 30px;
    list-style: none;
}

li {
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
}

li::before {
    content: '🏗️';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
}

a:hover {
    border-bottom: 2px solid var(--secondary-color);
    background-color: rgba(116, 185, 255, 0.1);
    color: var(--city-blue);
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
    color: var(--light-text);
    background: linear-gradient(90deg, transparent, rgba(116, 185, 255, 0.1), transparent);
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

footer::before {
    content: '🌆';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

footer::after {
    content: '🌆';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

/* Decorative city elements */
.container::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--sky-blue), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 15px;
        padding: 20px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.4rem;
        padding: 12px 15px;
    }
    
    body {
        font-size: 15px;
    }
    
    header::after {
        display: none;
    }
    
    footer::before,
    footer::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 10px;
        padding: 15px;
    }
    
    h1 {
        font-size: 1.9rem;
    }
    
    h2 {
        font-size: 1.3rem;
        padding: 10px 12px;
    }
    
    h2::before {
        display: none;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
    }
    
    .container {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }
    
    .container::before,
    .container::after,
    header::after,
    footer::before,
    footer::after {
        display: none;
    }
}
