/* ========================================
   Privacy Policy Styles - IIA FLASH
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 40px 30px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.last-updated {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
}

/* Main Content */
main {
    padding: 40px 30px;
}

section {
    margin-bottom: 35px;
}

section.intro {
    background: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    margin-bottom: 40px;
}

section.intro p {
    margin-bottom: 15px;
}

section.intro p:last-child {
    margin-bottom: 0;
}

/* Typography */
h2 {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
}

h3 {
    color: #764ba2;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

h4 {
    color: #555;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    color: #555;
    font-size: 1rem;
}

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

li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

li strong {
    color: #667eea;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    text-align: left;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #667eea;
    font-size: 1.1rem;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 25px 30px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 10px;
    }

    header {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 25px 20px;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p, li {
        font-size: 0.95rem;
    }

    ul {
        margin-left: 15px;
        padding-left: 10px;
    }

    section.intro,
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }

    .last-updated {
        font-size: 0.85rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    main {
        padding: 20px 15px;
    }

    footer {
        padding: 20px 15px;
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: #ffffff;
        padding: 0;
    }

    .container {
        box-shadow: none;
        border-radius: 0;
    }

    header {
        background: #667eea;
        color: #ffffff;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    section {
        page-break-inside: avoid;
    }

    h2 {
        page-break-after: avoid;
    }
}
