.about-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-left h2 {
    font-family: 'Museo Sans 500 Medium', serif;
    font-size: 4rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.1;
}

.about-btn {
    display: inline-block;
    color: black;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: 1px solid #b6ff7f;
    padding: 2rem;
    font-size: 12px;
}

    .about-btn::before {
        background-image: linear-gradient(140.65deg, #97ea24 8.63%, #eaff57 48.92%, #76ff00 92.57%);
        border-radius: 50%;
        clip-path: circle(50% at 50% 50%) padding-box;
        content: "";
        inset: 0;
        -webkit-mask: radial-gradient(transparent 66%, #000 67%, #000 100%);
        mask: radial-gradient(transparent 66%, #000 67%, #000 100%);
        position: absolute;
        transition: opacity .6s ease, opacity .6s ease .6s;
    }

    .about-btn:hover {
        background: #4CAF50;
        color: white;
        transform: translateY(-2px);
    }

    .about-btn[data-mouse-follower="active"] {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
        background: #4CAF50 !important;
        color: white !important;
        border-color: #4CAF50 !important;
    }

.about-right {
    position: relative;
}

.about-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about-image img {
        width: 400px;
        height: 400px;
        object-fit: cover;
        border-radius: 50%;
        aspect-ratio: 2 / 3;
        overflow: hidden;
        transition: all 8s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        top: -20%;
        transform: scale(1);
    }

    .about-image:hover img {
        transform: scale(1.15);
    }

.about-section.in-view .about-image img {
    transform: scale(1.3);
}

.about-text {
    margin-bottom: 80px;
}

.about-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .about-description p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

        .about-description p:last-child {
            margin-bottom: 0;
        }

/* Stats Grid */
.about-stats {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Museo Sans 500 Medium', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 80px;
}

    .partner-item:hover {
        border-color: #4CAF50;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .partner-item span {
        font-size: 0.9rem;
        color: #666;
        font-weight: 500;
        text-align: center;
    }

    .partner-item:hover span {
        color: #4CAF50;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .about-btn {
        margin: auto;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-left h2 {
        font-size: 3rem;
    }

    .about-image {
        height: 350px;
        max-width: 350px;
        margin: 0 auto;
    }

        .about-image img {
            width: 100%;
            height: 100%;
        }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        margin-bottom: 60px;
    }

    .about-left h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .about-image {
        height: 280px;
        max-width: 280px;
    }

    .about-text {
        margin-bottom: 60px;
    }

    .about-description p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-item {
        min-height: 60px;
        padding: 15px;
    }

        .partner-item span {
            font-size: 0.8rem;
        }
}

@media (max-width: 480px) {
    .about-left h2 {
        font-size: 2rem;
    }

    .about-image {
        height: 240px;
        max-width: 240px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}
