.fade-init {
    opacity: 0 !important;
    transform: translateY(30px) !important;
}

.about {
    position: relative;
    padding: 0 0 60px 0;
    background-color: #f5f5f5;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.about::before {
    content: '';
    position: absolute;
    right: -400px;
    bottom: 0;
    width: 50%;
    height: 50%;
    background: url('../images/bg-pattern2.png') no-repeat center bottom;
    filter: blur(200px);
    z-index: 2;
}

/* Section Header */
.about-header {
    margin-bottom: 80px;
}

.about-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1.28px;
    line-height: normal;
    margin: 0 auto;
}

.title-highlight {
    color: #340061;
    font-weight: 600;
}

.title-normal {
    color: transparent;
    -webkit-text-stroke: 1px #340061;
    font-weight: 600;
}

/* Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 100px;
    align-items: start;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    cursor: pointer;
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 26px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-weight: 600;
    color: #340061;
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 34px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.feature-description {
    padding-left: 50px;
    transition: transform 0.3s ease;
}

.feature-description p {
    font-weight: 400;
    color: #340061;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 26px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Feature Hover Effects */
.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item:hover .feature-title {
    color: #5e0da3;
}

.feature-item:hover .feature-description {
    transform: translateX(10px);
}

.feature-item:hover .feature-description p {
    opacity: 0.8;
}

/* About Image */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 400px;
    height: 479px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(52, 0, 97, 0.15);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(52, 0, 97, 0.2);
}

.main-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .main-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(52, 0, 97, 0.1) 0%,
            rgba(94, 13, 163, 0.2) 50%,
            rgba(52, 0, 97, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.image-container:hover .overlay-content {
    transform: translateY(0);
}

.stats-badge {
    text-align: center;
}

.about-stat-number {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #340061;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 5px;
}

.about-stat-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #340061;
    font-size: 14px;
    line-height: 20px;
    opacity: 0.8;
}

/* Background Elements */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
}

.bg-pattern-1 {
    background: linear-gradient(135deg, #340061, #5e0da3);
    top: 10%;
    left: -5%;
}

.bg-pattern-2 {
    background: linear-gradient(225deg, #5e0da3, #340061);
    bottom: 10%;
    right: -5%;
}

.bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg,
            rgba(52, 0, 97, 0.02) 0%,
            transparent 100%);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up-delay-3 {
    animation-delay: 0.6s;
}

.fade-in-up-delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-title {
        font-size: 56px;
    }

    .about-content {
        gap: 60px;
    }

    .image-container {
        width: 350px;
        height: 420px;
    }
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .image-container {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .feature-header {
        justify-content: center;
    }

    .feature-description {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 16px;
    }

    .about-header {
        margin-bottom: 20px;
    }

    .about-title {
        font-size: 42px;
        letter-spacing: -0.8px;
    }

    .features-list {
        gap: 30px;
    }

    .feature-header {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .feature-title {
        font-size: 20px;
        line-height: 28px;
        white-space: normal;
    }

    .feature-description {
        padding-left: 0;
    }

    .feature-description p {
        font-size: 15px;
        line-height: 24px;
    }

    .image-container {
        height: 350px;
    }

    .overlay-content {
        padding: 15px 20px;
    }

    .about-stat-number {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .feature-title {
        font-size: 18px;
        line-height: 26px;
    }

    .feature-description p {
        font-size: 14px;
        line-height: 22px;
    }

    .image-container {
        height: 300px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .feature-item,
    .image-container {
        animation: none;
        transition: none;
    }

    .feature-item:hover .feature-icon,
    .feature-item:hover .feature-description,
    .image-container:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .feature-description p {
        opacity: 1;
    }

    .title-normal {
        -webkit-text-stroke-width: 2px;
    }
}

/* Focus styles for accessibility */
.feature-item:focus-within {
    outline: 2px solid #5e0da3;
    outline-offset: 4px;
    border-radius: 8px;
}

.image-container:focus-within {
    outline: 2px solid #5e0da3;
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .about-bg {
        display: none;
    }

    .image-overlay {
        opacity: 1;
    }

    .feature-item {
        opacity: 1;
        transform: none;
    }
}