body {
    background: #000;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
}

.about-container {
    max-width: 700px;
    margin: 48px auto;
    background: #111;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 48px 40px 40px 40px;
    text-align: center;
    border: 1.5px solid #444;
    color: #fff;
}

.profile-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    border: 4px solid #222;
    background: #222;
}

h1, h2, h3 {
    color: #fff;
}

h1 {
    font-size: 2.3rem;
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.2px;
}

.about-section {
    margin-bottom: 28px;
    text-align: left;
    padding-bottom: 18px;
    border-bottom: 1px solid #444;
}

.about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-section h3 {
    font-size: 1.08rem;
    color: #ccc;
    margin-bottom: 7px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.about-section p {
    font-size: 1.01rem;
    color: #fff;
    margin: 0;
    line-height: 1.7;
}

strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 600px) {
    .about-container {
        padding: 18px 4vw 18px 4vw;
    }
    .profile-img {
        width: 100px;
        height: 100px;
    }
}