.srpl-page-intro {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.srpl-page-intro p {
    margin: 0 0 1rem;
}

.srpl-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.srpl-hero-stat {
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.srpl-hero-stat strong,
.srpl-hero-stat span {
    display: block;
}

.srpl-hero-stat strong {
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.35;
}

.srpl-hero-stat span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

.srpl-section {
    max-width: 1180px;
    margin: 0 auto;
    color: #23313f;
}

.srpl-section > h2 {
    margin: 0 0 1.5rem;
    color: #10324f;
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    line-height: 1.2;
}

.srpl-section-intro {
    max-width: 860px;
    margin: 0 auto 2rem;
}

.srpl-section-intro p:last-child {
    margin-bottom: 0;
}

.srpl-flow > * + *,
.srpl-card-body > * + * {
    margin-top: 1rem;
}

.srpl-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.srpl-card-grid.srpl-card-grid--stack {
    grid-template-columns: 1fr;
}

.srpl-card {
    height: 100%;
    padding: 1.75rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #d9e1e8;
    box-shadow: 0 18px 45px rgba(8, 30, 52, 0.08);
}

.srpl-card h3,
.srpl-section h3 {
    margin: 0;
    color: #0f2f4d;
    font-size: 1.35rem;
    line-height: 1.35;
}

.srpl-section h4 {
    margin: 0;
    color: #194d77;
    font-size: 1.08rem;
    line-height: 1.45;
}

.srpl-section p,
.srpl-card p,
.srpl-section li,
.srpl-card li {
    font-size: 1rem;
    line-height: 1.8;
    color: #3e4d5c;
}

.srpl-section p,
.srpl-card p {
    margin: 0 0 1rem;
}

.srpl-section ul,
.srpl-section ol,
.srpl-card ul,
.srpl-card ol {
    margin: 0;
    padding-left: 1.25rem;
}

.srpl-section li + li,
.srpl-card li + li {
    margin-top: 0.5rem;
}

.srpl-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.25rem;
    color: #0f2f4d;
    font-weight: 700;
}

.srpl-table-wrap {
    overflow-x: auto;
    margin: 1.25rem 0 0;
    border: 1px solid #d9e1e8;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(8, 30, 52, 0.06);
}

.srpl-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.srpl-table thead th {
    background: #10324f;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
}

.srpl-table th,
.srpl-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid #e4ebf1;
    vertical-align: top;
    line-height: 1.65;
}

.srpl-table tbody tr:nth-child(even) {
    background: #f7fafc;
}

.srpl-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.srpl-button-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: #10324f;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.srpl-button-row a:hover,
.srpl-button-row a:focus-visible {
    background: #17486f;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(16, 50, 79, 0.22);
    transform: translateY(-1px);
}

.srpl-section a {
    color: #0b63b3;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.srpl-section a:hover,
.srpl-section a:focus-visible {
    color: #084a85;
}

.srpl-empty-note {
    margin: 0;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: #eef5fb;
    color: #36506b;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .srpl-card {
        padding: 1.3rem;
        border-radius: 16px;
    }

    .srpl-page-intro {
        font-size: 1rem;
    }

    .srpl-section p,
    .srpl-card p,
    .srpl-section li,
    .srpl-card li {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .srpl-button-row a {
        width: 100%;
    }
}
