/* ===============================================
   ZED ITALY - UNIFIED POLICIES STYLES
   =============================================== */

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    animation: fadeInUp 0.8s ease-out;
}

/* Header Styles */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    text-align: center;
    margin: 40px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 30px 0 20px 0;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
    margin: 25px 0 15px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Paragraphs */
p {
    font-size: 1rem;
    margin: 15px 0;
    text-align: justify;
    line-height: 1.8;
    color: #444;
}

/* Lists */
ul, ol {
    margin: 20px 0;
    padding-left: 30px;
}

li {
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.7;
    color: #555;
}

/* Links */
a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Special Elements */
.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 20px;
    text-align: left;
}

td {
    padding: 18px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
    color: #555;
}

tr:nth-child(even) {
    background: #f8f9ff;
}

tr:hover {
    background: #e8f0ff;
    transition: background 0.3s ease;
}

/* Divider */
.divider {
    text-align: center;
    margin: 30px 0;
}

.divider i {
    font-size: 2rem;
    color: #667eea;
    background: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.nav {
    text-align: center;
    margin-bottom: 40px;
}

.nav a {
    display: inline-block;
    margin: 0 15px;
    padding: 10px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 2rem;
        margin: 30px 0;
    }
    
    h2 {
        font-size: 1.5rem;
        margin: 25px 0 15px 0;
    }
    
    h3 {
        font-size: 1.2rem;
        margin: 20px 0 12px 0;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    li {
        font-size: 0.9rem;
    }
    
    .highlight {
        font-size: 0.9rem;
        padding: 15px 20px;
    }
    
    th, td {
        font-size: 0.8rem;
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 0.85rem;
    }
    
    li {
        font-size: 0.85rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .container {
        background: white;
        box-shadow: none;
        border-radius: 0;
    }
    
    h1, h2, h3 {
        color: #333;
        -webkit-text-fill-color: #333;
    }
}
