.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

.about-image {
    position: relative;
    width: 30%;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-text {
    width: 80%;
    padding-left: 50px;
}

.about-badge {
    display: inline-block;
    background: #a51d1d;
    color: white;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-about {
    display: inline-block;
    background: #a51d1d;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.read-more-about:hover {
    background: #8e1919;
}

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

    .about-image, .about-text {
        width: 100%;
        padding: 0;
    }

    .about-text {
        margin-top: 30px;
    }
}