/* About Us section styles extracted from yeo.css */

.idea-about {
    background: #0a007e;
    padding: 56px 0 48px 0;
    text-align: center;
    color: #fff;
}

.idea-about .feature-title {
    color: #fff;
    font-weight: 200;
    font-size: 1rem;
    padding: .5rem 0 .5rem 0;
    opacity: .5;
    text-align: center;
    display: inline-block;
    border-bottom: 1px solid #bcb9b9;
    margin: 0 auto 2rem;
}

.idea-about .about-content {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.idea-about .about-intro {
    font-size: 1.2em;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.idea-about .about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin-bottom: 24px;
    height: 100%;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), background 0.3s, color 0.3s;
}

.idea-about .about-feature h3 {
    color: #0a007e;
    font-size: .9rem;
    font-weight: 700;
    padding: 1rem 0 .1rem 0;
    transition: color 0.2s;
}

.idea-about .about-feature p {
    color: #333;
    font-size: .8rem;
    font-weight: 400;
    opacity: .8;
    transition: color 0.2s;
}

.idea-about .about-feature:hover {
    background: linear-gradient(135deg, #91D0FF 0%, #2881EE 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.idea-about .about-feature:hover h3,
.idea-about .about-feature:hover p {
    color: #fff;
}

.idea-about .about-feature:hover .about-icon span {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}

.idea-about .about-icon {
    text-align: center;
    margin-bottom: 20px;
}

.idea-about .about-icon span {
    font-size: 3em;
    transition: filter 0.3s;
}

.idea-about .about-stats {
    text-align: center;
    margin-top: 40px;
}

.idea-about .stat-item {
    padding: 20px 10px;
}

.idea-about .stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00ffd4;
}

.idea-about .stat-label {
    font-size: .9rem;
    font-weight: 400;
    opacity: 0.9;
    color: #fff;
}

@media (max-width: 600px) {
    .idea-about {
        padding: 2rem 0 2rem 0;
    }
    .idea-about .about-feature {
        padding: 32px 12px;
    }
    .idea-about .about-intro {
        font-size: 1em;
    }
    .idea-about .stat-number {
        font-size: 2em;
    }
    .idea-about .stat-label {
        font-size: .8rem;
    }
}

.about-features-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}
.about-features-row > .column {
    display: flex;
    flex-direction: column;
}
.about-feature {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
@media (max-width: 900px) {
    .about-features-row {
        flex-direction: column;
    }
    .about-features-row > .column {
        width: 100%;
        max-width: 100%;
    }
} 