/* Info Pages Shared Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    min-height: 100vh;
}

/* Back Button Header */
.page-back-header {
    padding: 20px;
    text-align: left;
    max-width: 940px;
    margin: 0 auto;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-4px);
}

.back-button i {
    font-size: 14px;
}

.info-container {
    max-width: 900px;
    margin: 20px auto 40px;
    padding: 0 20px;
}

.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.info-header {
    padding: 40px;
    padding-bottom: 30px;
}

.info-badge {
    display: inline-block;
    background: #357ABD;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.info-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.info-content {
    padding: 0 40px 40px 40px;
}

.info-section {
    margin-bottom: 32px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.info-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    margin: 24px 0 12px 0;
}

.info-section p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.info-section p:last-child {
    margin-bottom: 0;
}

.info-section ul {
    margin: 12px 0;
    padding-left: 24px;
}

.info-section li {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

.info-section strong {
    color: #1e293b;
    font-weight: 600;
}

.highlight-box {
    background: #FFF9E6;
    border-left: 4px solid #F59E0B;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #92400E;
    margin: 0 0 12px 0;
}

.highlight-box p {
    font-size: 14px;
    color: #78350F;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.info-footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2b6cbd 100%);
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-developer {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.footer-developer a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-developer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-back-header {
        padding: 16px 12px;
    }

    .back-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .info-container {
        margin: 16px auto 30px;
        padding: 0 12px;
    }

    .info-header {
        padding: 24px 20px 20px;
    }

    .info-title {
        font-size: 26px;
    }

    .info-subtitle {
        font-size: 14px;
    }

    .info-content {
        padding: 0 20px 24px 20px;
    }

    .info-section h2 {
        font-size: 20px;
    }

    .info-section h3 {
        font-size: 16px;
    }

    .highlight-box {
        padding: 16px 18px;
    }

    .info-footer {
        padding: 24px 16px;
    }

    .footer-links {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        padding: 5px 0 15px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .footer-links::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .footer-links a {
        flex-shrink: 0;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.1);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
    }
}