body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fcfcfc;
    color: #333;
}

/* ===== HEADER ===== */
/* .page-header {
    background: #ffffff;
    border-bottom: 3px solid #da0808;
    padding: 40px 20px;
    text-align: center;
} */

.page-header {
    position: relative;
    background: #ffffff;
    border-bottom: 3px solid #da0808;
    padding: 50px 20px 40px;
    text-align: center;
}

.page-header h1 {
    color: #da0808;
    font-size: 26px;
    line-height: 1.4;
    margin: 0;
}

/* ===== Language Switcher ===== */
.lang-switcher {
    position: absolute;
    top: 16px;
    right: 20px;
    display: flex;
    gap: 6px;
}

.lang-btn {
    padding: 9px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #da0808;
    border: 1px solid #da0808;
    background: #ffffff;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background-color: #da0808;
    color: #ffffff;
}

@media (max-width: 600px) {
    .lang-switcher {
        position: static;
        justify-content: center;
        margin-bottom: 15px;
    }
}


/* .header-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
} */

/* ===== Language Switcher ===== */
/* .lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 6px 12px;
    border: 1px solid #da0808;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #da0808;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background-color: #da0808;
    color: #ffffff;
}

.lang-btn.active {
    background-color: #da0808;
    color: #ffffff;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
} */




/* ===== SECTIONS ===== */
.docs-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: #da0808;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* ===== DOCUMENTS ===== */
.docs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.doc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    /* background: #ffffff;
    border: 1px solid #e0e0e0; */

    background: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);

    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.doc-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.doc-card img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.doc-card span {
    font-size: 15px;
    font-weight: 500;
}

/* ===== INTRO SECTION ===== */
.intro-section {

    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);

    max-width: 900px;
    margin: 40px auto 20px;
    /* padding: 0 20px; */
    text-align: center;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* ===== INFO BLOCK ===== */
.info-block {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.info-card {
    background: #ffffff;
    border-left: 4px solid #da0808;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    border-radius: 12px;
}

.info-card h3 {
    margin-top: 0;
    color: #da0808;
    font-size: 18px;
}

.info-card p,
.info-card li {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.info-card ul {
    padding-left: 18px;
}



/* ===== FOOTER ===== */
.site-footer {
    margin-top: 70px;
    padding: 20px;
    background-color: #fafafa;
    border-top: 2px solid #da0808;
    text-align: center;
    font-size: 14px;
    color: #555;
}

.footer-sub {
    color: #da0808;
    font-weight: 500;
}