.about-section {
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.about-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
}

.about-image {
    flex: 1;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.about-details {
    display: grid;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(42, 42, 114, 0.1));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.detail-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.detail-item:hover::before {
    transform: translateX(0);
}

.detail-item i {
    font-size: 2rem;
    color: #00D4FF;
    background: rgba(0, 212, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.detail-item:hover i {
    transform: rotateY(180deg);
    background: linear-gradient(45deg, #00D4FF, #2A2A72);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.detail-item:nth-child(1) i {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(42, 42, 114, 0.1));
}

.detail-item:nth-child(2) i {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 159, 0, 0.1));
    color: #FF6600;
}

.detail-item:nth-child(3) i {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(66, 99, 193, 0.1));
    color: #6F42C1;
}

.detail-item:nth-child(1):hover i {
    background: linear-gradient(45deg, #00D4FF, #2A2A72);
    color: #ffffff;
}

.detail-item:nth-child(2):hover i {
    background: linear-gradient(45deg, #FF6600, #FF9F00);
    color: #ffffff;
}

.detail-item:nth-child(3):hover i {
    background: linear-gradient(45deg, #6F42C1, #4263C1);
    color: #ffffff;
}

.detail-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.detail-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 6rem 1rem 3rem;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .about-content {
        padding: 2rem;
    }

    .detail-item {
        padding: 1.2rem;
    }

    .detail-item i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-content {
        padding: 1.5rem;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .detail-item i {
        margin-bottom: 1rem;
    }
} 