.about-page {
    background: #0b1220;
    color: #ffffff;
    padding: 120px 20px;
}

.about-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 70px;
    align-items: center;
}

.about-photo-card {
    width: 320px;
    height: 420px;
    padding: 8px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f4b400, #ff7a00);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.about-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    background: #111827;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background: #111827;
    color: #f4b400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    font-weight: 800;
}

.about-label {
    display: inline-block;
    color: #f4b400;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-content-side h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #ffffff;
}

.about-text {
    max-width: 760px;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.9;
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.about-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn.primary {
    background: #f4b400;
    color: #111827;
}

.about-btn.primary:hover {
    background: #ffffff;
    color: #111827;
}

.about-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.about-btn.secondary:hover {
    background: #ffffff;
    color: #111827;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 45px;
    }

    .about-photo-card {
        margin: 0 auto;
    }

    .about-actions {
        justify-content: center;
    }

    .about-content-side h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 80px 15px;
    }

    .about-photo-card {
        margin-top: 2rem;
        width: 260px;
        height: 340px;
    }

    .about-content-side h1 {
        font-size: 30px;
    }
}