.about {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
    overflow: hidden;
}

.about .bg-abstract {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.about-half-circle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(to right, #f6c390, #f38128);
    border-radius: 50%;
    clip-path: inset(0 0 0 50%);
    z-index: 2;
}

.brand-about {
    position: relative;
    z-index: 3;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 120px;
    margin-top: 115px;
    border: 6px solid #fff;
}

.brand-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    width: 750px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
    z-index: 3;
}

.about-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.about-card h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 0.3;
    color: #222;
    margin: 0;
    padding-top: 15px;
}

.about-card h2 span {
    color: #f38128;
    font-weight: 800;
    display: block;
    margin: 0;
    line-height: 1;
}

.about-logo {
    width: 180px;
    height: auto;
}

.about-card p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333;
    text-align: justify;
}

@media (max-width: 1024px) {
    .about {
        height: auto;
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .about .bg-abstract {
        object-position: center center;
    }

    .about-half-circle {
        display: none;
    }

    .about-content {
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 0 40px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .brand-about {
        flex-shrink: 0;
        margin-left: 0;
        margin-top: 0;
        width: 200px;
        height: 200px;
    }

    .about-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 550px;
        padding: 25px;
        margin-left: 0;
        margin-right: 0;
        flex: 1;
    }

    .about-card h2 {
        font-size: 22px;
    }

    .about-logo {
        width: 140px;
    }

    .about-card p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about {
        height: auto;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .about .bg-abstract {
        object-position: center center;
    }

    .about-half-circle {
        display: none;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }

    .brand-about {
        margin-left: 0;
        margin-top: 0;
        width: 180px;
        height: 180px;
    }

    .about-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 450px;
        padding: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .about-card h2 {
        font-size: 22px;
    }

    .about-logo {
        width: 120px;
    }

    .about-card p {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .about {
        height: auto;
        min-height: auto;
        padding: 50px 20px 30px;
    }

    .about .bg-abstract {
        object-position: center top;
    }

    .about-half-circle {
        display: none;
    }

    .brand-about {
        display: none;
    }

    .about-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 25px 20px;
    }

    .about-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .about-card h2 {
        font-size: 20px;
        line-height: 1.3;
        padding-top: 0;
    }

    .about-card h2 span {
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .about-logo {
        width: 110px;
    }

    .about-card p {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 15px 30px;
    }

    .about .bg-abstract {
        object-position: center top;
    }

    .about-card {
        max-width: 100%;
        padding: 20px 15px;
    }

    .about-card h2 {
        font-size: 18px;
    }

    .about-logo {
        width: 100px;
    }

    .about-card p {
        font-size: 11px;
        line-height: 1.5;
    }
}

@media (max-width: 375px) {
    .about {
        padding: 35px 10px 25px;
    }

    .about .bg-abstract {
        object-position: center top;
    }

    .about-card {
        padding: 15px 12px;
        border-radius: 12px;
    }

    .about-card h2 {
        font-size: 16px;
    }

    .about-logo {
        width: 90px;
    }

    .about-card p {
        font-size: 10px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
}
