.about-container {
    max-width: 1200px;
    margin: 120px auto 40px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.profile-section {
    text-align: center;
    margin-bottom: 60px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 255, 255, 0.1));
    border: 3px solid rgba(79, 172, 254, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #4facfe;
    box-shadow: 0 8px 32px rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(79, 172, 254, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.name-title {
    margin-bottom: 20px;
}

.name {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #4facfe, #00ffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(79, 172, 254, 0.3);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.title {
    font-size: 1.3rem;
    color: rgba(230, 237, 243, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: 400;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.content-card {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 0 12px 40px rgba(79, 172, 254, 0.15);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4facfe;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.6rem;
    color: #4facfe;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    line-height: 1.3;
}

.card-content {
    color: rgba(230, 237, 243, 0.95);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 20px;
        margin-top: 100px;
    }

    .name {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 15px;
        margin-top: 80px;
    }

    .profile-section {
        padding: 15px;
    }

    .profile-image img {
        width: 100px;
        height: 100px;
    }

    .name {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .title {
        font-size: 1rem;
    }

    .content-grid {
        gap: 20px;
    }

    .content-card {
        padding: 15px;
    }

    .content-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .content-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 360px) {
    .about-container {
        padding: 0 12px;
        margin-top: 70px;
    }

    .profile-section {
        padding: 12px;
    }

    .profile-image img {
        width: 80px;
        height: 80px;
    }

    .name {
        font-size: 1.8rem;
    }

    .title {
        font-size: 0.9rem;
    }

    .content-card {
        padding: 12px;
    }

    .content-card h3 {
        font-size: 1rem;
    }

    .content-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .about-container {
        padding: 0 10px;
        margin-top: 60px;
    }

    .profile-section {
        padding: 10px;
    }

    .profile-image img {
        width: 70px;
        height: 70px;
    }

    .name {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .title {
        font-size: 0.8rem;
    }

    .content-grid {
        gap: 15px;
    }

    .content-card {
        padding: 10px;
    }

    .content-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .content-card p {
        font-size: 0.8rem;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
    }
}