.as-container-6e6126f7 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.as-content-col {
    flex: 1 1 400px;
}

.as-image-col {
    flex: 1 1 400px;
    position: relative;
}

.as-subtitle {
    color: #df8127;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.as-heading {
    color: #0b3d2c;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.as-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.as-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.as-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #444;
    font-size: 15px;
}

.as-bullet {
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #df8127;
    border-radius: 50%;
}

.as-btn {
    display: inline-block;
    background-color: #0b3d2c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.as-btn:hover {
    background-color: #08291d;
    color: #fff;
}

.as-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.as-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.as-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.as-badge-primary {
    color: #0b3d2c;
    font-size: 32px;
    font-weight: 700;
}

.as-badge-secondary {
    color: #666;
    font-size: 14px;
    max-width: 100px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .as-container-6e6126f7 {
        flex-direction: column;
    }
    .as-badge {
        bottom: 10px;
        left: 10px;
    }
}