.about-section {
    margin-bottom: 4rem;
}

.section-title-about {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title-about i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.about-image-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, #06c000 100%);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    box-shadow: 0 10px 30px rgba(67, 237, 0, 0.2);
}

.about-icon {
    font-size: 10rem;
    color: white;
    opacity: 0.9;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #06c000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Feature Boxes */
.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(67, 237, 0, 0.15);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #06c000 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.btn-cta i {
    font-size: 1.5rem;
}

/* Responsive About Page */
@media (max-width: 768px) {
    .section-title-about {
        font-size: 1.5rem;
        justify-content: center;
        text-align: center;
    }

    .about-text {
        font-size: 1rem;
        text-align: justify;
    }

    .about-image-container {
        min-height: 200px;
        padding: 2rem;
    }

    .about-icon {
        font-size: 6rem;
    }

    .value-card {
        margin-bottom: 1rem;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-box i {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}