.about {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px 50px;
    background-color: var(--primary-color);
    color: var(--background-color);
    min-height: 80vh;
    overflow-x: hidden;
}

.about-content {
    max-width: 600px;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.about .btn {
    padding: 10px 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.about .btn:hover {
    background-color: var(--accent-color);
    color: var(--background-color);
}

.about-image {
    max-width: 50%;
    min-width: 200px;
}

.about-image img {
    height: 50vh;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .about {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 50px 20px;
    }

    .about-image {
        max-width: 80%;
        margin-top: 30px;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }
}