.page-header {
    margin-bottom: 50px;
}

.page-title {
    padding-left:2.75rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    position: relative;
    line-height: 1;
    font-size: 1.35rem;
}

.page-title.sm {font-size:1.1rem;}

.page-title::before {
    content: '';
    position: absolute;
    left: 7px;
    top: calc(50% - 8px);
    bottom: 0;
    width: 20px;
    height:8px;
    background: var(--point-color);
}
.page-title::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    bottom: 0;
    width: 20px;
    height:8px;
    background: #d4deeb;
}

.intro-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.intro-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.info-card h3 {
    color: var(--point-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.info-card p {
    color: #555;
    /*line-height: 1.5;*/
    margin: 0;
}

.info-card span {/*font-size:0.9rem; line-height:1.35;*/}

.info-card strong {color:#111; }

.callbox .ico {color:var(--orange-color); vertical-align:middle; margin-right:5px;}

.main-section-title {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--point-color);
    margin: 60px 0 30px 0;
    line-height: 1.2;
}

.main-section-title .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--point-color);
    color: white;
    font-weight: 700;
    border-radius: 6px;
    margin-right: 15px;
    font-size: 1rem;
}

.main-section-title:first-of-type {
    margin-top: 40px;
}

.table-section {
}

.table-default {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 0;
    border-collapse: collapse;
    margin-bottom: 10px;
    border-top: 2px solid #36404a;
    font-size: 1rem;
}

.table-default tr th {
    color: #36404a;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04rem;
    background: #f9f9fa;
    padding: 1rem 1.5rem;
    border: 1px solid #dbdbdb;
    border-top: none;
}

.table-default tr td {
    padding: 1rem 1.5rem;
    border: 1px solid #dbdbdb;
    border-top: none;
    color: #333;
    line-height: 1.5;
}

.table-default td:first-child, .table-default th:first-child {
    border-left: none;
    text-align: center;
    font-weight: 600;
    background: #f9f9fa;
}

@media (max-width: 1199px) {
	.page-header {margin-bottom:30px;}
    .page-title {
        font-size: 1.25rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .intro-section {
        padding: 20px;
    }
    
	.table-default thead tr th:first-child {width:30%;}
    .table-default tr th,
    .table-default tr td {
        padding: 0.75rem 1rem;
        font-size: 14px;
		word-break:break-all;
		max-width:40%;
    }
}