/* UrionSoft - Privacy Pages Styles */
/* Common styles for all privacy policy pages */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #B34700 0%, #944000 100%);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 30px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

h1 {
    font-size: 2.2em;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h2 {
    color: #B34700;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 3px solid #ffd8b5;
    padding-bottom: 10px;
}

h3 {
    color: #944000;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin: 15px 0;
    font-size: 1.05em;
    color: #34495e;
}

ul {
    margin: 15px 0;
    padding-left: 25px;
}

li {
    margin: 10px 0;
    color: #34495e;
}

a {
    color: #B34700;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

a:hover {
    border-bottom: 2px solid #B34700;
    background: #ffd8b5;
    padding: 2px 4px;
    border-radius: 3px;
}

footer {
    background: linear-gradient(135deg, #944000 0%, #B34700 100%);
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

footer p {
    margin: 0;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    section {
        padding: 25px;
    }

    main {
        margin: 20px auto;
    }
}
