/* ABOUT SECTION */
#about {
    padding: 100px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #111;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
}

/* Left image */
.about-image img {
    width: 480px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Right text content */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* Experience block */
.experience {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

.years h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1;
}

.years p {
    font-size: 0.9rem;
    margin-top: 8px;
    color: #666;
}

blockquote {
    font-style: italic;
    font-size: 1rem;
    color: #555;
    border-left: 3px solid #000;
    padding-left: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    #about {
        padding: 80px 5%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .experience {
        justify-content: center;
    }

    .about-image img {
        width: 100%;
        max-width: 500px;
    }

    blockquote {
        border: none;
        padding-left: 0;
    }
}