.about-container {
    padding: calc(80px + 2rem) 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 60px);
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s ease infinite;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.about-text p:hover {
    color: #fff;
}

.about-text strong {
    color: #fff;
    font-weight: 600;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.about-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(18, 18, 18, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .contact-info {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: calc(80px + 1rem) 1rem 1rem;
    }

    .about-content {
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
    }

    .about-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-image img {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-text h1 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .about-image img {
        width: 200px;
        height: 200px;
    }
}