* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    padding: 40px 20px;
    line-height: 1.7;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 1, 128, 0.3);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #020180 0%, #0502b8 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header .subtitle {
    font-size: 1.1em;
    opacity: 0.95;
    font-weight: 300;
}

.content {
    padding: 50px 40px;
}

.last-updated {
    background: #f8f9ff;
    border-left: 4px solid #020180;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.last-updated strong {
    color: #020180;
}

.intro {
    background: linear-gradient(
        135deg,
        rgba(2, 1, 128, 0.05) 0%,
        rgba(5, 2, 184, 0.05) 100%
    );
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 35px;
    border: 2px solid #020180;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #020180;
    font-size: 1.6em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #020180;
    font-weight: 600;
}

.section h3 {
    color: #020180;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.section p {
    margin-bottom: 15px;
    text-align: justify;
}

.highlight {
    background: linear-gradient(
        120deg,
        rgba(2, 1, 128, 0.1) 0%,
        rgba(5, 2, 184, 0.1) 100%
    );
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: #020180;
}

ul {
    margin: 15px 0 15px 30px;
}

ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
}

ul li::marker {
    color: #020180;
    font-weight: bold;
}

.important-box {
    background: #fff8e1;
    border-left: 5px solid #ffa726;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.important-box strong {
    color: #f57c00;
}

.footer {
    background: linear-gradient(135deg, #020180 0%, #0502b8 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.footer a:hover {
    background: white;
    color: #020180;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rights {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.9;
}

@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    .header {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .content {
        padding: 30px 20px;
    }

    .section h2 {
        font-size: 1.3em;
    }
}

.tag {
    display: inline-block;
    background: #020180;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    margin: 5px 5px 5px 0;
    font-weight: 600;
}
