.about {
    padding: 60px 20px;
    background: #f9fafc;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 14px;
    text-transform: uppercase;
    color: #6c63ff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
    text-align:justify;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #6c63ff;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #574fd6;
}

.about-visual {
    flex: 1;
}

.about-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about{
        padding:20px 20px 0px 20px;
    }
    .about img,.about-text h2 {
        display:none;
    }

    .about-text h3 {
        font-size: 26px;
    }
}