 /* About Section */
    .about-section {
        padding: 6rem 0;
        background: #ffffff;
    }

    .about-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* About Content */
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        margin-bottom: 5rem;
    }

    /* Text Content */
    .about-text {
        max-width: 600px;
    }

    .section-subtitle {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .subtitle-line {
        width: 50px;
        height: 2px;
        background: #1E73BE;
    }

    .section-subtitle span {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #000000;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
        color: #666666;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    /* Stats */
    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin: 3rem 0;
        padding: 2rem 0;
        border-top: 2px solid #f0f0f0;
        border-bottom: 2px solid #f0f0f0;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        background: #1E73BE;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .stat-icon i {
        font-size: 1.3rem;
        color: #ffffff;
    }

    .stat-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #000000;
        margin: 0 0 0.25rem 0;
        line-height: 1;
    }

    .stat-content p {
        font-size: 0.875rem;
        color: #666666;
        margin: 0;
    }

    /* CTA Button */
    .btn-about {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: #1E73BE;
        color: #ffffff;
        padding: 1rem 2rem;
        border-radius: 0;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: 2px solid #1E73BE;
    }

    .btn-about:hover {
        background: #155a94;
        border-color: #155a94;
    }

    .btn-about i {
        font-size: 0.9rem;
    }

    /* About Image */
    .about-image {
        position: relative;
        height: 500px;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .image-decoration {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 200px;
        height: 200px;
        border: 3px solid #1E73BE;
        z-index: -1;
    }

    /* Features */
    .about-features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .feature-box {
        background: #f8f9fa;
        padding: 2rem;
        border-left: 3px solid #1E73BE;
        transition: all 0.3s ease;
    }

    .feature-box:hover {
        background: #ffffff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: #1E73BE;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .feature-icon i {
        font-size: 1.3rem;
        color: #ffffff;
    }

    .feature-box h4 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.75rem;
    }

    .feature-box p {
        font-size: 0.9rem;
        color: #666666;
        line-height: 1.6;
        margin: 0;
    }

    /* Responsive Design */
    @media screen and (max-width: 1200px) {
        .about-features {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 968px) {
        .about-section {
            padding: 4rem 0;
        }

        .about-content {
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .about-image {
            height: 400px;
            order: -1;
        }

        .image-decoration {
            display: none;
        }

        .about-stats {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .about-features {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    @media screen and (max-width: 768px) {
        .about-container {
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .about-image {
            height: 300px;
        }

        .btn-about {
            width: 100%;
            justify-content: center;
        }
    }

    @media screen and (max-width: 480px) {
        .section-title {
            font-size: 1.5rem;
        }

        .about-description {
            font-size: 0.95rem;
        }

        .stat-content h3 {
            font-size: 1.3rem;
        }
    }