:root {
    --standard-ink: #172033;
    --standard-muted: #667085;
    --standard-line: #e5e9f0;
    --standard-surface: #ffffff;
    --standard-soft: #f7f8fb;
    --standard-primary: #ef5b55;
    --standard-primary-dark: #d9443e;
    --standard-navy: #243b67;
}

.standard-page {
    margin: 0 -15px;
    padding: 34px 15px 72px;
    background: var(--standard-soft);
    color: var(--standard-ink);
}

.standard-page-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.standard-hero {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, #243b67 0%, #334f82 58%, #ef5b55 160%);
    color: #fff;
    box-shadow: 0 18px 44px rgba(31, 48, 83, .17);
}

.standard-hero:after {
    position: absolute;
    right: -90px;
    bottom: -125px;
    width: 310px;
    height: 310px;
    border: 55px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: "";
}

.standard-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.standard-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: #ffd6d3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.standard-hero h1 {
    margin: 0 0 13px;
    color: #fff;
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
}

.standard-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.8;
}

.standard-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    align-items: start;
    margin-top: 24px;
}

.standard-content-grid.is-wide {
    grid-template-columns: 1fr;
}

.standard-panel,
.standard-side-card,
.standard-card,
.standard-directory-card,
.standard-form-card {
    border: 1px solid var(--standard-line);
    border-radius: 14px;
    background: var(--standard-surface);
    box-shadow: 0 8px 26px rgba(23, 32, 51, .055);
}

.standard-panel {
    padding: 34px;
}

.standard-panel h2 {
    margin: 34px 0 10px;
    color: var(--standard-ink);
    font-size: 23px;
}

.standard-panel h2:first-child { margin-top: 0; }

.standard-panel h3 {
    margin: 25px 0 8px;
    color: var(--standard-navy);
    font-size: 17px;
}

.standard-panel p,
.standard-panel li {
    color: #526071;
    font-size: 14px;
    line-height: 1.8;
}

.standard-panel ul { padding-left: 20px; }
.rtl .standard-panel ul { padding-right: 20px; padding-left: 0; }

.standard-side-card {
    position: sticky;
    top: 24px;
    padding: 22px;
}

.standard-side-card h3 {
    margin: 0 0 14px;
    color: var(--standard-ink);
    font-size: 16px;
}

.standard-side-card a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 0;
    border-bottom: 1px solid #edf0f4;
    color: var(--standard-muted);
    font-size: 13px;
    font-weight: 700;
}

.standard-side-card a:last-child { border-bottom: 0; }
.standard-side-card a:hover { color: var(--standard-primary); text-decoration: none; }

.standard-card-grid,
.standard-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.standard-card {
    padding: 25px;
}

.standard-card-icon,
.standard-directory-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff2f1;
    color: var(--standard-primary);
    font-size: 18px;
}

.standard-card h3 {
    margin: 18px 0 8px;
    font-size: 17px;
}

.standard-card p {
    margin: 0;
    color: var(--standard-muted);
    font-size: 13px;
    line-height: 1.7;
}

.standard-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--standard-line);
    border-radius: 12px;
    background: #fff;
}

.standard-search {
    position: relative;
    flex: 1;
    max-width: 560px;
}

.standard-search i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: #98a2b3;
    transform: translateY(-50%);
}

.rtl .standard-search i { right: 15px; left: auto; }

.standard-search input,
.standard-select,
.standard-field input,
.standard-field textarea {
    width: 100%;
    min-height: 45px;
    border: 1px solid #d5dae2;
    border-radius: 8px;
    background: #fff;
    color: var(--standard-ink);
}

.standard-search input { padding: 10px 15px 10px 42px; }
.rtl .standard-search input { padding-right: 42px; padding-left: 15px; }

.standard-search input:focus,
.standard-select:focus,
.standard-field input:focus,
.standard-field textarea:focus {
    border-color: var(--standard-primary);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(239, 91, 85, .12);
}

.standard-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 0;
    border-radius: 8px;
    background: var(--standard-primary);
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
}

.standard-btn:hover { background: var(--standard-primary-dark); text-decoration: none; }

.standard-directory-card {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
    padding: 19px;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.standard-directory-card:hover {
    border-color: #f3b4b0;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(23, 32, 51, .09);
    text-decoration: none;
}

.standard-directory-icon {
    flex: 0 0 48px;
    border-radius: 50%;
    font-weight: 800;
}

.standard-directory-card strong,
.standard-directory-card span { display: block; }
.standard-directory-card strong { overflow: hidden; color: var(--standard-ink); text-overflow: ellipsis; white-space: nowrap; }
.standard-directory-card span { margin-top: 4px; color: var(--standard-muted); font-size: 12px; }

.standard-faq-list {
    display: grid;
    gap: 12px;
}

.standard-faq-list details {
    border: 1px solid var(--standard-line);
    border-radius: 10px;
    background: #fff;
}

.standard-faq-list summary {
    position: relative;
    padding: 18px 50px 18px 19px;
    color: var(--standard-ink);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.standard-faq-list summary:after {
    position: absolute;
    top: 50%;
    right: 19px;
    color: var(--standard-primary);
    content: "+";
    font-size: 22px;
    transform: translateY(-50%);
}

.standard-faq-list details[open] summary:after { content: "−"; }
.standard-faq-list details p { margin: 0; padding: 0 19px 19px; }

.standard-form-card { padding: 30px; }
.standard-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.standard-field.is-full { grid-column: 1 / -1; }
.standard-field label { display: block; margin-bottom: 7px; color: #344054; font-size: 13px; font-weight: 800; }
.standard-field label span { color: var(--standard-primary); }
.standard-field input,
.standard-field textarea { padding: 10px 12px; }
.standard-field textarea { min-height: 145px; resize: vertical; }
.standard-field .error-message { display: block; margin-top: 5px; color: #b42318; font-size: 12px; }

.standard-contact-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, .7fr); gap: 24px; margin-top: 24px; }
.standard-contact-info { padding: 27px; }
.standard-contact-info h2 { margin-top: 0; font-size: 21px; }
.standard-contact-info-inner { color: var(--standard-muted); line-height: 1.75; }

.standard-empty {
    grid-column: 1 / -1;
    padding: 48px 20px;
    border: 1px dashed #ccd3dd;
    border-radius: 12px;
    color: var(--standard-muted);
    text-align: center;
}

.standard-pagination { display: flex; justify-content: center; margin-top: 28px; }

.standard-report-book-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.standard-report-book {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--standard-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(23, 32, 51, .055);
}

.standard-report-book-cover {
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #eef1f5;
}

.standard-report-book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.standard-report-book-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.standard-report-book-body h2 {
    display: -webkit-box;
    min-height: 40px;
    margin: 0 0 7px;
    overflow: hidden;
    color: var(--standard-ink);
    font-size: 14px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.standard-report-book-body p {
    min-height: 18px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--standard-muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.standard-report-book-body .standard-btn {
    width: 100%;
    margin-top: auto;
}

.footer-standard-links {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-standard-links ul { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 0; padding: 0; list-style: none; }
.footer-standard-links a { font-size: 12px; }

@media (max-width: 991px) {
    .standard-content-grid,
    .standard-contact-layout { grid-template-columns: 1fr; }
    .standard-side-card { position: static; }
    .standard-card-grid,
    .standard-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .standard-report-book-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .standard-page { padding-top: 20px; }
    .standard-hero { padding: 30px 23px; border-radius: 13px; }
    .standard-hero p { font-size: 14px; }
    .standard-panel,
    .standard-form-card { padding: 22px 18px; }
    .standard-card-grid { grid-template-columns: 1fr; }
    .standard-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .standard-directory-card { align-items: flex-start; flex-direction: column; padding: 14px; }
    .standard-directory-card strong { width: 100%; font-size: 12px; }
    .standard-report-book-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .standard-report-book-body { padding: 12px; }
    .standard-report-book-body .standard-btn { min-height: 40px; padding: 8px; font-size: 11px; }
    .standard-toolbar { align-items: stretch; flex-direction: column; }
    .standard-search { max-width: none; }
    .standard-form-grid { grid-template-columns: 1fr; }
    .standard-field.is-full { grid-column: auto; }
}
