.bundle-intro-53b2131c {
    padding: 120px 20px;
    background-color: #FAFAFA;
}

.bundle-intro-53b2131c .bundle-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.bundle-intro-53b2131c .bundle-image-col {
    flex: 1 1 45%;
    min-width: 300px;
}

.bundle-intro-53b2131c .bundle-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    object-fit: cover;
}

.bundle-intro-53b2131c .bundle-content-col {
    flex: 1 1 45%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bundle-intro-53b2131c .bundle-headline {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #111;
}

.bundle-intro-53b2131c .bundle-body {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.bundle-intro-53b2131c .bundle-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bundle-intro-53b2131c .bundle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bundle-intro-53b2131c .bundle-btn-primary {
    background-color: #111;
    color: #fff;
    border: 2px solid #111;
}

.bundle-intro-53b2131c .bundle-btn-primary:hover {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

.bundle-intro-53b2131c .bundle-btn-secondary {
    background-color: transparent;
    color: #111;
    border: 2px solid #111;
}

.bundle-intro-53b2131c .bundle-btn-secondary:hover {
    background-color: #111;
    color: #fff;
}

@media (max-width: 768px) {
    .bundle-intro-53b2131c {
        padding: 80px 20px;
    }
    
    .bundle-intro-53b2131c .bundle-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .bundle-intro-53b2131c .bundle-headline {
        font-size: 2rem;
    }
}