/* =================================================================
   Results Section Styling - Unified White Block Design
   Elegant, soft UI with colored divider lines
================================================================= */

/* Vision Statement */
.vision-statement {
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 0 15px;
}

.vision-statement p {
    font-size: 17px;
    line-height: 1.9;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
}

/* Unified White Block Container */
.unified-results-block {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Partners Section Background Override */
.partners-section .unified-results-block {
    background: #c22439;
}

.partners-section .section-title,
.partners-section .section-content {
    color: #ffffff;
}

.partners-section .stat-number,
.partners-section .stat-label {
    color: #ffffff;
}

/* Individual Result Section */
.result-section {
    margin-bottom: 50px;
}

.result-section:last-child {
    margin-bottom: 0;
}

/* Section Title with Colored Divider */
.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.colored-divider {
    width: 6px;
    height: 50px;
    border-radius: 3px;
    flex-shrink: 0;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Section Content Text */
.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin: 0 0 0 26px;
    font-weight: 400;
}

.section-content .emphasized-number {
    color: #000000;
    font-weight: 700;
    font-size: 17px;
}

/* Statistics Grid */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0 0 0;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.stat-number {
    font-size: 34px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
    display: block;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
    display: block;
    font-weight: 500;
}

/* Two Columns Row */
.two-columns-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

/* Three Columns Row */
.three-columns-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.column-item {
    /* Each column item inherits the same styling as result-section */
}

.column-item .section-title {
    font-size: 20px;
}

.column-item .section-content {
    font-size: 14px;
    margin-left: 26px;
}

.column-item .colored-divider {
    width: 5px;
    height: 40px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .unified-results-block {
        padding: 45px;
    }
    
    .vision-statement p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-content {
        font-size: 15px;
        margin-left: 26px;
    }
    
    .colored-divider {
        width: 5px;
        height: 45px;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-left: 0;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .two-columns-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .three-columns-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .column-item .section-title {
        font-size: 22px;
    }
    
    .column-item .section-content {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .unified-results-block {
        padding: 35px 25px;
    }
    
    .vision-statement {
        margin-bottom: 35px;
    }
    
    .vision-statement p {
        font-size: 15px;
    }
    
    .result-section {
        margin-bottom: 40px;
    }
    
    .section-title-wrapper {
        gap: 15px;
    }
    
    .colored-divider {
        width: 5px;
        height: 40px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-content {
        font-size: 14px;
        margin-left: 20px;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 25px 0 0 0;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .two-columns-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .three-columns-row {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 40px;
    }
    
    .column-item .section-title {
        font-size: 20px;
    }
    
    .column-item .section-content {
        font-size: 14px;
        margin-left: 20px;
    }
    
    .column-item .colored-divider {
        height: 35px;
    }
}

@media (max-width: 575px) {
    .unified-results-block {
        padding: 30px 20px;
    }
    
    .vision-statement p {
        font-size: 14px;
    }
    
    .result-section {
        margin-bottom: 35px;
    }
    
    .section-title-wrapper {
        gap: 12px;
    }
    
    .colored-divider {
        width: 4px;
        height: 35px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-content {
        font-size: 13px;
        margin-left: 16px;
    }
    
    .section-content .emphasized-number {
        font-size: 15px;
    }
    
    .statistics-grid {
        margin-left: 0;
    }
    
    .stat-item {
        padding: 18px 12px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .two-columns-row {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .three-columns-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 35px;
    }
    
    .column-item .section-title {
        font-size: 18px;
    }
    
    .column-item .section-content {
        font-size: 13px;
        margin-left: 16px;
    }
    
    .column-item .colored-divider {
        width: 4px;
        height: 30px;
    }
}
