.blog-back-button{
    margin-top: 5rem;
    text-align: left;
}

/* General styles for .no-format */
.no-format {
    color: #79808A; /* Text color */
    font-size: 1rem; /* Base font size */
    line-height: 1.6; /* Line height for readability */
    word-wrap: break-word; /* Prevent text overflow */
    margin-bottom: 5rem; /* Space below the .no-format element */
}

/* Responsive typography for headings */
.no-format h1 {
    font-size: 2rem; /* Default size for h1 */
    font-weight: bold;
    margin-bottom: 1rem;
}

.no-format h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.9rem;
}

.no-format h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.no-format h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.7rem;
}

.no-format h5 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
}

.no-format h6 {
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Paragraphs and other text elements */
.no-format p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.no-format strong {
    font-weight: bold;
}

.no-format em {
    font-style: italic;
}

/* Lists */
.no-format ul,
.no-format ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.no-format li {
    margin-bottom: 0.5rem;
}

/* Images */
.no-format img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
    display: block;
    margin: 1rem auto;
}

/* Tables */
.no-format table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.no-format th,
.no-format td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
}

.no-format th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .no-format h1 {
        font-size: 1.75rem;
    }

    .no-format h2 {
        font-size: 1.5rem;
    }

    .no-format h3 {
        font-size: 1.25rem;
    }

    .no-format h4 {
        font-size: 1.125rem;
    }

    .no-format h5 {
        font-size: 1rem;
    }

    .no-format h6 {
        font-size: 0.875rem;
    }
}