﻿p a {
    text-decoration: underline;
    color: #0094ff !important;
}

h2 {
    margin-top: 20px;
}

p {
    font-size: 16px;
    line-height: 30px;
}

h1 {
    color: #fff;
}


@media only screen and (max-width: 767px) {
    .breadcrumbs {
        word-break: break-word;
    }

    .breadcrumbs h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 22px;
    }
}

.footer .copyright .copyright-content p {
    font-size: 12px;
}

ul.subpage {
    list-style: none;
    padding: 0;
    margin: 1.2em 0;
}

ul.subpage li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

ul.subpage li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1e73be;
    font-weight: bold;
    font-size: 1.1rem;
}


.documents-section {
    padding: 70px 25px;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
    margin: 50px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

    .documents-section h2 {
        text-align: center;
        margin-bottom: 25px;
        font-size: 2rem;
        font-weight: 700;
        color: #1e73be;
        letter-spacing: 0.5px;
    }

    .documents-section p {
        text-align: center;
        margin-bottom: 50px;
        color: #555;
        font-size: 1.05rem;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.document-card {
    display: block;
    padding: 25px 20px;
    background-color: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    text-align: center;
    border: 1px solid #e0e0e0;
}

a.document-card {
    word-wrap: break-word;
}


.document-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #1e73be;
    background-color: #fefefe;
}

    .document-card::before {
        content: "📄";
        display: block;
        font-size: 2rem;
        margin-bottom: 10px;
        color: #1e73be;
    }

    .document-card h3 {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 600;
        color: #1e73be;
        transition: color 0.2s;
    }

    .document-card:hover h3 {
        color: #0d4c91;
    }



.breadcrumbs.overlay {
    background: linear-gradient(135deg, #1e73be 0%, #155a9e 100%) !important;
    background-blend-mode: multiply;
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .breadcrumbs.overlay::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.05);
        z-index: 0;
    }

    .breadcrumbs.overlay h1 {
        position: relative;
        z-index: 1;
        font-size: 2.4rem;
        font-weight: 700;
        margin: 0;
        color: #fff;
        line-height: 1.3;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }

    .breadcrumbs.overlay::after {
        content: "";
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #fff;
        border-radius: 2px;
        opacity: 0.9;
    }
.copyright {
    background: #1e73be;
    color: #fff;
    padding: 50px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 4px solid #155a9e;
    text-align: center;
}

.copyright-content p {
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

    .copyright-content p strong {
        color: #fff;
    }

.copyright::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 0 auto 20px;
    border-radius: 2px;
    opacity: 0.8;
}

.copyright a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.copyright a:hover {
    opacity: 0.8;
}


.subpage li a {
    text-decoration: underline;
}

h3 {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #0056b3 !important; /* Calm authoritative blue tone */
    border-left: 4px solid #007bff; /* Thin left border accent */
    padding-left: 10px !important;
}

.body-text table {
    margin-top: 30px;

}