.about-content {
    background: rgba(0, 0, 0, 0.85);
    border-radius: clamp(8px, 2vw, 12px);
    padding: clamp(15px, 3vw, 30px);
    margin-top: clamp(15px, 3vw, 30px);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
    width: 100%;
}

.about-grid {
    display: grid;
    gap: clamp(15px, 3vw, 30px);
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
    padding: clamp(5px, 1.5vw, 15px);
}

.about-text p {
    line-height: 1.6;
    font-size: clamp(15px, 2.5vw, 18px);
    letter-spacing: 0.3px;
    max-width: 70ch;
    margin: 0 auto;
}

.team-photo {
    margin: 0;
    position: relative;
    width: 100%;
    border-radius: clamp(4px, 1vw, 8px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16 / 9;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Desktop */
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
    }

    .team-photo:hover .team-image {
        transform: scale(1.02);
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-text {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-content {
        padding: 20px 15px;
        margin-top: 15px;
        border-radius: 8px;
    }

    .about-text {
        text-align: left;
        padding: 0;
    }

    .about-text p {
        font-size: 16px;
    }

    .team-photo {
        aspect-ratio: 4 / 3;
        margin-top: 5px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .about-content {
        padding: 15px 12px;
    }

    .about-text p {
        font-size: 15px;
    }
}

/* Mobile Landscape */
@media (max-height: 480px) and (orientation: landscape) {
    .about-content {
        padding: 12px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}