* {
    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;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    background: linear-gradient(135deg, #020180 0%, #0502b8 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

.header-content {
    position: relative;
    z-index: 1;
}

.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;
}

.share-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.content {
    padding: 50px 40px;
}

.effective-date {
    background: #f8f9ff;
    border-left: 4px solid #020180;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.effective-date 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;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number {
    background: #020180;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
    flex-shrink: 0;
}

.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;
}

ul li strong {
    color: #020180;
}

.data-card {
    background: white;
    border: 2px solid #e3f2fd;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(2, 1, 128, 0.1);
    transition: all 0.3s ease;
}

.data-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(2, 1, 128, 0.2);
    border-color: #020180;
}

.data-card h3 {
    color: #020180;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-card .icon {
    font-size: 1.5em;
}

.control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.control-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eaff 100%);
    border: 2px solid #020180;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.control-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(2, 1, 128, 0.2);
}

.control-card .icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.control-card h4 {
    color: #020180;
    margin-bottom: 10px;
    font-weight: 600;
}

.control-card p {
    font-size: 0.9em;
    color: #555;
}

.important-box {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.important-box strong {
    color: #2e7d32;
}

.warning-box {
    background: #fff3e0;
    border-left: 5px solid #ff9800;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.warning-box strong {
    color: #e65100;
}

.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-footer {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.9;
}

.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;
}

@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    .header {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .share-icon {
        font-size: 2em;
    }

    .content {
        padding: 30px 20px;
    }

    .section h2 {
        font-size: 1.3em;
        flex-direction: column;
        align-items: flex-start;
    }

    .control-grid {
        grid-template-columns: 1fr;
    }

    .footer a {
        display: block;
        margin: 10px 0;
    }
}
