.intro {
    position: relative;
    height: 555px;
    width: 100%;
    background: url('../imgs/bg/intro_documents.png');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;

}

.big_intro_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.check_text {
    font-size: 1rem;
}


.intro_title {
    color: #fff;
    font-weight: 700;
    font-size: 62px;

}

.intro_subtitle {
    color: #fff;
    font-weight: 400;
    font-size: 56px;
}
.doc_page {
    margin-top: 100px;
}

.doc_title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2C3E50;
}

.doc_page p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #404040;
}

.doc_page b {
    font-weight: 600;
    color: #2C3E50;
    font-size: 1.25rem;

}

.doc_item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 14px;
    margin-bottom: 10px;

    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;

    transition: all 0.2s ease;
}

.doc_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.doc_item_img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.doc_item_title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;

    line-height: 1.4;

    transition: color 0.2s ease;
}

.doc_item_title:hover {
    color: #2f6fed;
    text-decoration: underline;
}