/* About TFI Page - New Design */

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* About Cards Section */
.about-cards-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    font-size: 14px;
    font-weight: 500;
}

.about-card-content {
    padding: 30px;
}

.about-card-content h3 {
    font-size: 22px;
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* Overview Section */
.overview-section {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-text h4 {
    font-size: 16px;
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.overview-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.overview-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.overview-text strong {
    color: var(--primary-teal);
    font-weight: 600;
}

/* Connecting Industries Section */
.connecting-industries-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.connecting-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.connecting-text h4 {
    font-size: 16px;
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connecting-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.connecting-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.connecting-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Scope of Impact Section */
.scope-impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    color: white;
}

.scope-impact-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.impact-stat {
    text-align: center;
}

.impact-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.impact-stat:hover .impact-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.impact-icon i {
    font-size: 40px;
    color: white;
}

.impact-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-label {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
    }

    .overview-content,
    .connecting-content {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 20px;
    }

    .about-cards-section,
    .overview-section,
    .connecting-industries-section,
    .scope-impact-section {
        padding: 50px 0;
    }

    .overview-text h2,
    .connecting-text h2 {
        font-size: 28px;
    }

    .scope-impact-section h2 {
        font-size: 32px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-number {
        font-size: 36px;
    }
}