.it-page .it-section {
    border: 1px solid var(--dok-border, #d8dde3);
    background: #f5f5f5;
    padding: 28px;
    margin-bottom: 20px;
}

.it-page .it-section-title {
    margin: 0 0 16px;
    color: #3b4350;
    font-size: 28px;
    font-weight: 700;
}

.it-content-block {
    background: #ffffff;
    padding: 20px;
    border: 1px solid #e0e5e9;
}

.it-content-block p {
    margin: 0 0 16px;
    color: #4d5763;
    font-size: 16px;
    line-height: 1.6;
}

.it-content-block p:last-child {
    margin-bottom: 0;
}

.it-content-block ul {
    margin: 0 0 16px 20px;
    list-style: disc;
}

.it-content-block li {
    margin: 0 0 8px;
    color: #4d5763;
    font-size: 16px;
}

.it-content-block a {
    color: #6b7f87;
    text-decoration: none;
    border-bottom: 1px solid #d7dbe0;
}

.it-content-block a:hover {
    color: #3d4654;
    border-bottom-color: #3d4654;
}

.it-content-block h3 {
    margin: 20px 0 10px;
    color: #3b4350;
    font-size: 22px;
    font-weight: 600;
}

.it-content-block h4 {
    margin: 14px 0 8px;
    color: #3d4654;
    font-size: 18px;
    font-weight: 600;
}

.it-content-block h5 {
    margin: 12px 0 6px;
    color: #3d4654;
    font-size: 16px;
    font-weight: 600;
}

/* Subsections styling for IT pagalba */
.it-subsections {
    margin: 0;
}

.it-subsection-item {
    border: 1px solid #e0e5e9;
    background: #ffffff;
    margin-bottom: 1px;
}

.it-subsection-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    cursor: pointer;
    user-select: none;
    background: #f7f8fa;
    border-bottom: 1px solid #e0e5e9;
    transition: background 0.15s;
    font-size: 15px;
    color: #3d4654;
    font-weight: 500;
}

.it-subsection-toggle:hover {
    background: #eceff3;
}

.it-subsection-toggle::before {
    content: '→ ';
    margin-right: 8px;
    display: inline-block;
    transition: transform 0.3s;
}

.it-subsection-toggle:not(.collapsed)::before {
    transform: rotate(90deg);
}

.it-subsection-title {
    flex-grow: 1;
    margin: 0;
}

.it-subsection-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.it-subsection-toggle:not(.collapsed) ~ .it-subsection-body {
    max-height: 1000px;
}

.it-subsection-body p {
    margin: 0;
    padding: 16px 18px;
    color: #4d5763;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .it-page .it-section {
        padding: 18px;
    }

    .it-content-block {
        padding: 15px;
    }
}
