.content .container {
    padding: 10px 40px !important;
}

/* ============================================
   INFORMATION PAGE - Enhanced Design
   ============================================ */

/* Information Page Header */
.information-page-header {
    text-align: center;
    padding: 40px 20px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.information-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.information-page-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.information-page-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(102, 126, 234, 0.3);
    animation: informationIconRotate 20s linear infinite;
}

@keyframes informationIconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.information-page-icon i {
    font-size: 32px;
    color: #fff;
}

.information-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0;
    position: relative;
}

/* Information Content Wrapper */
.information-content-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    overflow: hidden;
}

.information-content {
    padding: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.information-content h1,
.information-content h2,
.information-content h3,
.information-content h4,
.information-content h5,
.information-content h6 {
    color: #1e293b;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.information-content h1 {
    font-size: 32px;
    margin-top: 0;
}

.information-content h2 {
    font-size: 28px;
}

.information-content h3 {
    font-size: 24px;
}

.information-content h4 {
    font-size: 20px;
}

.information-content h5 {
    font-size: 18px;
}

.information-content h6 {
    font-size: 16px;
}

.information-content p {
    margin-bottom: 20px;
}

.information-content p:last-child {
    margin-bottom: 0;
}

.information-content ul,
.information-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.information-content ul li,
.information-content ol li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.information-content ul {
    list-style: none;
    padding-left: 0;
}

.information-content ul li {
    position: relative;
    padding-left: 28px;
}

.information-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-bg, #667eea);
    font-weight: 600;
    font-size: 18px;
}

.information-content ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.information-content ol li {
    counter-increment: item;
    position: relative;
    padding-left: 32px;
}

.information-content ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: var(--primary-bg, #667eea);
    font-weight: 700;
    font-size: 16px;
}

.information-content blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: #f8fafc;
    border-left: 4px solid var(--primary-bg, #667eea);
    border-radius: 8px;
    font-style: italic;
    color: #64748b;
}

.information-content blockquote p {
    margin-bottom: 0;
}

.information-content a {
    color: var(--primary-bg, #667eea);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.information-content a:hover {
    color: var(--header-bg, #16213e);
    border-bottom-color: var(--header-bg, #16213e);
}

.information-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.information-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.information-content table thead {
    background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
    color: #fff;
}

.information-content table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.information-content table td {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
    color: #374151;
}

.information-content table tbody tr:hover {
    background: #f8fafc;
}

.information-content table tbody tr:last-child td {
    border-bottom: none;
}

.information-content code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #dc2626;
}

.information-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.information-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.information-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 32px 0;
}

/* Information Actions */
.information-actions {
    text-align: center;
    padding: 30px 0;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-bg, #1a1a2e) 0%, var(--header-bg, #16213e) 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* Responsive Information Page */
@media (max-width: 768px) {
    .information-page-header {
        padding: 30px 16px 24px;
        margin-bottom: 20px;
    }
    
    .information-page-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .information-page-icon i {
        font-size: 24px;
    }
    
    .information-page-title {
        font-size: 22px;
    }

    .information-content {
        padding: 24px 20px;
        font-size: 15px;
    }

    .information-content h1 {
        font-size: 26px;
    }

    .information-content h2 {
        font-size: 22px;
    }

    .information-content h3 {
        font-size: 20px;
    }

    .information-content h4 {
        font-size: 18px;
    }

    .information-content table {
        font-size: 12px;
    }

    .information-content table th,
    .information-content table td {
        padding: 12px 16px;
    }

    .information-actions {
        padding: 20px 0;
    }
}
