.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 20px;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}
.about-left {
    flex: 1;
    position: relative;
}
.main-img {
    width: 100%;
    border-radius: 20px;
}
.star-img {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.about-content {
    flex: 1;
}
.about-label {
    font-size: 14px;
    background: #fff7e6;
    color: #d97706;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}
.about-content h2 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 10px;
}
.subtext {
    color: #4b5563;
    font-size: 16px;
    margin: 15px 0 25px;
}
.custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to right, #ea580c, #0284c7);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.custom-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.custom-button span {
    font-size: 18px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }
    .about-left, .about-content {
        flex: 1 1 100%;
    }
    .about-content {
        text-align: center;
    }
}
