
.introduction h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 600 !important;
    margin-top: 1.5em !important;
    margin-bottom: 0.75em !important;
}

.introduction h1 {
    font-size: 1.5rem;
    /*border-bottom: 2px solid #007acc;*/
    padding-bottom: 5px;
}

.introduction h2 {
    font-size: 1rem;
}

.introduction h3 {
    font-size: 1rem;
}

.introduction h4 {
    font-size: 1rem;
}

.introduction h5 {
    font-size: 1rem;
}

.introduction h6 {
    font-size: 1rem;
}

/* Paragraphs and Text */
.introduction p {
    margin-bottom: 1.5em;
    font-size: 14px;
    color: #444;
}

.introduction ul, ol {
    margin-bottom: 1.5em;
    padding-left: 20px;
    list-style: auto;
}

.introduction li {
    margin-bottom: 0.75em;
}

/* Links */
.introduction a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.introduction a:hover {
    color: #333333;
    text-decoration: underline;
}

/* Code */
.introduction code {
    background-color: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95em;
    color: #d14;
}

.introduction pre {
    background: #272822;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 1rem;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.introduction pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Blockquote */
.introduction blockquote {
    color: #555;
    margin: .65rem 0;
    font-style: italic;
    font-size: 1.05em;
    padding-right: 20px;
    border-radius: 3px;
}

/* Tables */
.introduction table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.introduction table, th, td {
    border: 1px solid #ddd;
}

.introduction th, td {
    padding: 12px;
    text-align: left;
}

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

/* Responsive Styles */
@media (max-width: 768px) {

    .introduction h1 {
        font-size: 1rem;
    }

    .introduction h2 {
        font-size: 1rem;
    }

    .introduction h3 {
        font-size: 1rem;
    }

    .introduction pre {
        font-size: 1rem;
        padding: 10px;
    }

    .introduction table {
        font-size: 0.9em;
    }

    .introduction img {
        max-width: 100%;
        height: auto;
    }
}

.introduction img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}