/* ============================================
   ScrapNode - CGU Page Styles
   ============================================ */

/* CGU Content */
.cgu-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

/* CGU Cards */
.cgu-card {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(52, 73, 94, 0.4));
    border: 1px solid rgba(52, 73, 94, 0.5);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 30px;
}

.cgu-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #E67E22;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cgu-card h2 .article-number {
    background: linear-gradient(135deg, #E67E22, #D35400);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cgu-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ECF0F1;
    margin: 25px 0 15px;
}

.cgu-card p {
    color: #BDC3C7;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.cgu-card ul {
    color: #BDC3C7;
    line-height: 1.8;
    margin-left: 25px;
    margin-bottom: 15px;
}

.cgu-card ul li {
    margin-bottom: 10px;
}

.cgu-card strong {
    color: #ECF0F1;
}

/* Highlight Box */
.highlight-box {
    background: rgba(230, 126, 34, 0.1);
    border-left: 4px solid #E67E22;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
}

.highlight-box p {
    margin-bottom: 0;
}

/* Warning Box */
.warning-box {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #E74C3C;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
}

.warning-box p {
    margin-bottom: 0;
    color: #E74C3C;
}

/* Last Update */
.last-update {
    text-align: center;
    color: #7F8C8D;
    font-size: 0.95rem;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(52, 73, 94, 0.3);
}

/* Table of Contents */
.toc {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(52, 73, 94, 0.4));
    border: 2px solid rgba(230, 126, 34, 0.3);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
}

.toc h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #E67E22;
    margin-bottom: 25px;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: #BDC3C7;
    text-decoration: none;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 10px;
}

.toc-list a:hover {
    color: #E67E22;
    background: rgba(230, 126, 34, 0.1);
}

.toc-list a .toc-number {
    background: rgba(230, 126, 34, 0.2);
    color: #E67E22;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* ============================================
   Responsive - Page Specific
   ============================================ */
@media (max-width: 768px) {
    .cgu-card {
        padding: 30px 20px;
    }

    .cgu-card h2 {
        font-size: 1.5rem;
    }
}
