/* About Content */
.about-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 230, 0, 0.1) 0%, rgba(0, 230, 0, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-grid.reverse .about-content {
    order: 1;
}

.about-grid.reverse .about-image {
    order: 2;
}

.about-section.alternate {
    background: #f8f8f8;
}

.about-content-full {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-content-full h2 {
    font-size: 42px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.about-content-full p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 16px;
    text-align: left;
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.about-content-full p + p {
    margin-top: 12px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.about-content h2 {
    font-size: 42px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-content .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: #f8f8f8;
    padding: 60px 5%;
    margin: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;

}

.stat-label {
    font-size: 16px;
}

/* Values Section */
.values-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background: #f8f8f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.value-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse {
        grid-template-columns: 1fr;
    }

    .about-grid.reverse .about-content {
        order: 0;
    }

    .about-grid.reverse .about-image {
        order: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 32px;
    }

    .about-content-full h2 {
        font-size: 32px;
    }

    .values-section h2 {
        font-size: 32px;
    }

    .about-image {
        height: 350px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}