/* Navigation Styling */
.top-nav {
    display: flex;
    justify-content: flex-start;
    padding: 10px 0;
    margin-bottom: 20px;
}

.back-link {
    text-decoration: none;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #3b82f6;
}

/* Header Alignment */
.info-header {
    text-align: left;
    margin-bottom: 40px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 15px;
}

/* Content Spacing Fixes */
.info-content p {
    margin-bottom: 25px; /* Added space after paragraphs */
    color: #4b5563;
    line-height: 1.7;
}

.info-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 40px; /* Added space before headings */
    margin-bottom: 15px; /* Added space after headings */
    color: #111827;
}

.last-updated {
    font-size: 0.85rem;
    color: #9ca3af;
    font-style: italic;
}

/* Footer Styling */
.info-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #9ca3af;
    font-size: 0.8rem;
}