* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 50%, #dbeafe 100%);
    color: #1f2937;
}

.container {
    max-width: 896px;
    margin: 130px auto 0 auto;
}

/* Header */
.header {
    margin-bottom: 32px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #0066FF;
}

.back-link svg {
    width: 16px;
    height: 16px;
}

.title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    margin-left: 1px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0066FF 0%, #1E3A8A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    color: white;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
}

.date {
    color: #4b5563;
}

/* Content Card */
.content-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 102, 255, 0.05);
    padding: 32px;
}

@media (min-width: 768px) {
    .content-card {
        padding: 48px;
    }
}

/* Sections */
section {
    margin-bottom: 32px;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: disc;
    list-style-position: inside;
    color: #374151;
    margin-left: 16px;
}

ul li {
    margin-bottom: 8px;
}
ol {
    list-style: disc;
    list-style-position: inside;
    color: #374151;
    margin-left: 16px;
}

ol li {
    margin-bottom: 8px;
}

strong {
    font-weight: 600;
}

a {
    color: #0066FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.footer-law {
    margin-top: 32px;
    text-align: center;
}

.footer-law a {
    color: #4b5563;
}

.footer-law a:hover {
    color: #0066FF;
}


@media (max-width : 768px) {
    .container {
        padding: 0 15px;
    }
}