/* About Section Styling */
.about {
    padding: 100px 0;
    background-color: #f9fafc;
}

.about .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.about .section-header .subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Layout Container */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 0;
}

/* Top Row Layout */
.about-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 40px;
}

.about-who-we-are {
    padding-right: 30px;
}

.about-t3k-meaning {
    display: flex;
    justify-content: center;
    align-items: center;
}

.t3k-meaning {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 100%;
}

.meaning-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.meaning-image:hover {
    transform: translateY(-5px);
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #3498db;
}

.about-text p.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}

/* Value Propositions */
.value-props {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    background: #f8fafd;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}

.value-prop:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #e0e9f5;
}

.value-prop i {
    color: #3498db;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.value-prop h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.value-prop p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Right Column */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.t3k-meaning {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.meaning-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.meaning-image:hover {
    transform: translateY(-5px);
}

/* About Text Styling */
.about-who-we-are h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-who-we-are h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #3498db;
}

.about-who-we-are p.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}

.about-who-we-are p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Core Values */
.core-values {
    width: 100%;
    text-align: center;
    margin-top: 0;
    padding-top: 60px;
    border-top: 1px solid #eaeff5;
}

.core-values h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.core-values h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3498db;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.value-card:hover .value-icon {
    background: #3498db;
    color: white;
    transform: rotateY(180deg);
}

.value-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        padding: 0 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-top-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-who-we-are {
        padding-right: 0;
        text-align: center;
    }
    
    .about-who-we-are h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-t3k-meaning {
        order: -1;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 70px 0;
    }
    
    .about .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.7rem;
    }
    
    .core-values h3 {
        font-size: 1.7rem;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about {
        padding: 70px 0;
    }
    
    .about .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.7rem;
    }
    
    .core-values h3 {
        font-size: 1.7rem;
    }
}
